# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
97260 | 2019-02-14T16:19:53 Z | popovicirobert | Permutation Recovery (info1cup17_permutation) | C++14 | 15 ms | 640 KB |
#include <bits/stdc++.h> #define lsb(x) (x & (-x)) #define ll long long #define ull unsigned long long #define ld long double // 217 // 44 using namespace std; const int MOD = (int) 1e9 + 7; const int MAXN = 70000; inline void mod(int &x) { if(x >= MOD) x -= MOD; } int dif[MAXN + 1], aux[MAXN + 1]; string str; const int B = 300; unordered_multiset <int> fr[MAXN / B]; int lazy[MAXN / B]; int main() { //ifstream cin("A.in"); //ofstream cout("A.out"); int i, j, n; ios::sync_with_stdio(false); cin.tie(0), cout.tie(0); cin >> n; ll last = 0; for(i = 0; i < n; i++) { cin >> str; int cur = 0; for(auto it : str) { cur = (1LL * cur * 10 + it - '0') % MOD; } dif[i] = cur - last + MOD; mod(dif[i]); last = cur; } for(i = 0; i < n; i++) { fr[i / B].insert(dif[i]); aux[i] = dif[i]; } vector <int> sol(n); for(int tt = 1; tt <= n; tt++) { i = (n - 1) / B; while(i > 0) { int cur = 1 + lazy[i]; mod(cur); if(fr[i].find(cur) != fr[i].end()) { break; } i--; } int pos; for(j = min(n - 1, (i + 1) * B - 1); j >= i * B; j--) { if(sol[j]) { continue; } int cur = aux[j] + lazy[i]; mod(cur); if(cur == 1) { pos = j; break; } } sol[pos] = tt; for(j = pos; j < min(n, (i + 1) * B); j++) { fr[i].erase(fr[i].find(aux[j])); aux[j] += MOD - dif[pos]; mod(aux[j]); fr[i].insert(aux[j]); } i++; while(i < (n - 1) / B) { lazy[i] += dif[pos]; mod(lazy[i]); i++; } for(j = i * B; j < n; j++) { fr[i].erase(fr[i].find(aux[j])); aux[j] += MOD - dif[pos]; mod(aux[j]); fr[i].insert(aux[j]); } } for(i = 0; i < n; i++) { cout << sol[i] << " "; } //cin.close(); //cout.close(); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 384 KB | Output is correct |
2 | Correct | 15 ms | 384 KB | Output is correct |
3 | Runtime error | 4 ms | 640 KB | Execution killed with signal 11 (could be triggered by violating memory limits) |
4 | Halted | 0 ms | 0 KB | - |