Submission #675577

#TimeUsernameProblemLanguageResultExecution timeMemory
675577benjaminkleynGondola (IOI14_gondola)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "gondola.h" using namespace std; typedef long long ll; int cnt[250001]; int valid(int n, int inputSeq[]) { memset(cnt, 0, sizeof(cnt)); for (int i = 0; i < n; i++) { cnt[inputSeq[i]]++; if (cnt[inputSeq[i]] > 1) return 0; } int startPos = -1; for (int i = 0; i < n; i++) if (inputSeq[i] <= n) { startPos = (i - inputSeq[i] + 1 + n) % n; break; } if (startPos == -1) return 1; for (int i = 0; i < n; i++) if (inputSeq[i] <= n && startPos != (i - inputSeq[i] + 1 + n) % n) return 0; return 1; } int replacement(int n, int gondolaSeq[], int replacementSeq[]) { vector<pair<int,int>> r; int startPos = 0; for (int i = 0; i < n; i++) if (gondolaSeq[i] > n) r.push_back({gondolaSeq[i], i}); else startPos = (i - gondolaSeq[i] + 1 + n) % n; sort(r.begin(), r.end()); int l = 0; int cur_mx = n; for (auto [newval, idx] : r) { int oldval = (i - startPos + 1 + n) % n; while (oldval != newval) { replacementSeq[l++] = oldval; oldval = cur_mx + 1; cur_mx++; } } return l; } int countReplacement(int n, int inputSeq[]) { }

Compilation message (stderr)

gondola.cpp: In function 'int replacement(int, int*, int*)':
gondola.cpp:48:23: error: 'i' was not declared in this scope
   48 |         int oldval = (i - startPos + 1 + n) % n;
      |                       ^
gondola.cpp: In function 'int countReplacement(int, int*)':
gondola.cpp:62:1: warning: no return statement in function returning non-void [-Wreturn-type]
   62 | }
      | ^