Submission #1008746

#TimeUsernameProblemLanguageResultExecution timeMemory
1008746Rolo678Labels (NOI20_labels)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >>n; vector<int>d(n); for(int i = 1;i<n;i++) { cin >>d[i]; } int num = 0; int ans = 0; for(int i = 1;i<=n;i++) { flag = true; int k = i; for(int j = 1;j<n;j++) { if(d[i]+k > n) { flag = false; break; } else { k+= d[i]; } num += flag; if(flag)ans = i; } } if(num != 1) { cout << -1 << '\n'; } else { int k = i; cout << i << ' '; for(int j:d) { k+= j; cout << k << ' '; } } }

Compilation message (stderr)

Labels.cpp: In function 'int main()':
Labels.cpp:19:7: error: 'flag' was not declared in this scope
   19 |       flag = true;
      |       ^~~~
Labels.cpp:43:15: error: 'i' was not declared in this scope
   43 |       int k = i;
      |               ^