# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
856070 | vjudge1 | Telefoni (COCI17_telefoni) | C++17 | 14 ms | 1628 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.
//author: Ahmet Alp Orakci
#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define ONLINE_JUDGE
void solve() {
int n, d;
cin >> n >> d;
vector <int> vec(n +1);
for(int i = 1; i <= n; i++)
cin >> vec[i];
int x = 1, ans = 0;
for(int i = 1; i <= n; i++) {
if(vec[i] == 1) {
x = d;
} else {
if(x == 0) {
vec[i] = 1;
x = d;
ans++;
}
}
x--;
}
cout << ans;
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |