# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1097116 | Trisanu_Das | Bouquet (EGOI24_bouquet) | C++17 | 21 ms | 4280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
int dp[200005];
signed main() {
ios::sync_with_stdio(0); cin.tie(0);
bool subt1 = true;
int n, rd;
cin >> n;
dp[0] = 1;
for (int i = 0, l, r; i < n; i++) {
cin >> l >> r;
if (l == r) {
if (!i) rd = l;
else if (rd != l) subt1 = false;
}
else subt1 = false;
if (i) dp[i] = dp[i - 1];
if (i > l) dp[i] = max(dp[i], dp[i - l - 1] + 1);
}
if (subt1) cout << (n + rd) / (rd + 1) << '\n';
else cout << dp[n - 1] << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |