RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0551

Moo Route

Gold II 골드 II
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer Nhoj dropped Bessie in the middle of nowhere! At time \(t=0\), Bessie is
located at \(x=0\) on an infinite number line. She frantically searches for an
exit by moving left or right by \(1\) unit each second. However, there actually is
no exit and after \(T\) seconds, Bessie is back at \(x=0\), tired and resigned.

Farmer Nhoj tries to track Bessie but only knows how many times Bessie crosses
\(x=.5, 1.5, 2.5, \ldots, (N-1).5\), given by an array \(A_0,A_1,\dots,A_{N-1}\)
(\(1\leq N \leq 10^5\), \(1 \leq A_i \leq 10^6\)). Bessie never reaches \(x>N\) nor
\(x<0\).

In particular, Bessie's route can be represented by a string of
\(T = \sum_{i=0}^{N-1} A_i\) \(L\)s and \(R\)s where the \(i\)th character represents
the direction Bessie moves in during the \(i\)th second. The number of direction
changes is defined as the number of occurrences of \(LR\)s plus the number of
occurrences of \(RL\)s.

Please help Farmer Nhoj count the number of routes Bessie could have taken that
are consistent with \(A\) and minimize the number of direction changes. It is
guaranteed that there is at least one valid route.

Problem credits: Brandon Wang, Claire Zhang, and Benjamin Qi

제약

SCORING

  • Inputs 2-4: \(N\le 2\) and \(\max(A_i)\le 10^3\)
  • Inputs 5-7: \(N\le 2\)
  • Inputs 8-11: \(\max(A_i)\le 10^3\)
  • Inputs 12-21: No additional constraints.

Problem credits: Brandon Wang, Claire Zhang, and Benjamin Qi

입력 형식

The first line contains \(N\). The second line contains \(A_0,A_1,\dots,A_{N-1}\).

출력 형식

The number of routes Bessie could have taken, modulo \(10^9+7\).

예제 1
입력
2
4 6
출력
2
설명

Bessie must change direction at least 5 times. There are two routes
corresponding to Bessie changing direction exactly 5 times:

RRLRLLRRLL
RRLLRRLRLL
문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2022-2023 > January > Gold

태그

평가 및 의견

Moo Route

개요
출제자 난이도 Gold II 골드 II 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Moo Route

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8