# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
373265 | rk42745417 | Po (COCI21_po) | C++17 | 1082 ms | 1644 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define EMT ios::sync_with_stdio(0); cin.tie(0);
using ll = int64_t;
using ull = uint64_t;
using uint = uint32_t;
using ld = long double;
const int MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;
const ll LINF = 2e18;
const double EPS = 1e-9;
signed main() { EMT
int n;
cin >> n;
vector<int> arr(n);
ll ans = 0;
for(int i = 0; i < n; i++)
cin >> arr[i];
int it = 0;
while(it < n) {
if(!arr[it]) {
it++;
continue;
}
int w = arr[it];
for(int i = it; i < n; i++) {
if(!arr[i])
break;
w = min(w, arr[i]);
}
ans++;
for(int i = it; i < n; i++) {
if(!arr[i])
break;
arr[i] -= w;
}
}
cout << ans << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |