# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
946232 | 2024-03-14T12:32:26 Z | Captain_Georgia | Labels (NOI20_labels) | C++17 | 122 ms | 19800 KB |
#include <bits/stdc++.h> using namespace std; #define file \ freopen("in.txt" , "r" , stdin); \ freopen("out.txt" , "w" , stdout); typedef long long ll; const int mod = 998244353; void test_case () { int n; cin >> n; int dif[n - 1] , a[n]; a[0] = 1; set<int> s; s.insert(1); for (int i = 0;i < n - 1;i ++) { cin >> dif[i]; a[i + 1] = a[i] + dif[i]; s.insert(a[i + 1]); } if (s.size() < n || (*s.begin() < 1 && *s.rbegin() > n)) { cout << "No\n"; return; } if (*s.begin() < 1) { int tmp = 1 - *s.begin(); for (int i = 0;i < n;i ++) { a[i] += tmp; cout << a[i] << " "; } cout << "\n"; } else if (*s.rbegin() > n) { int tmp = *s.rbegin() - n; for (int i = 0;i < n;i ++) { a[i] -= tmp; cout << a[i] << " "; } cout << "\n"; } else { for (int i = 0;i < n;i ++) { cout << a[i] << " "; } cout << "\n"; } } int32_t main () { // file int TIME = clock(); int t = 1; /// cin >> t; while (t --) { test_case(); } cerr << "\nTime elapsed: " << (clock() - TIME) * 1000.0 / CLOCKS_PER_SEC << " ms\n"; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 360 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 360 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 360 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 122 ms | 19284 KB | Output is correct |
2 | Correct | 1 ms | 348 KB | Output is correct |
3 | Correct | 114 ms | 19800 KB | Output is correct |
4 | Incorrect | 36 ms | 3344 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 360 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |