# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
129429 | E869120 | Permutation Recovery (info1cup17_permutation) | C++14 | 4086 ms | 7176 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.
#include <iostream>
#include <map>
#include <set>
#include <vector>
#include <string>
using namespace std;
#pragma warning (disable: 4996)
int cnta = 0, cntb = 0;
// ------------------ LIBRARY --------------------
const long long mod = 869120869120LL;
const long long mod2 = 777777777777LL;
const int BACKET = 250;
long long t[1 << 17], u[1 << 17], size_;
set<long long> Set[1 << 13];
bool used[1 << 17];
void init(vector<long long>E) {
size_ = E.size() + 1;
for (int i = 1; i <= E.size(); i++) {
t[i] = E[i - 1];
Set[i / BACKET].insert(131072LL * t[i] + 1LL * i);
}
}
void add_range(int l, int r, long long x) {
int c = l / BACKET;
for (int i = l; i < r; i++) {
if (used[i] == true) continue;
Set[c].erase(131072LL * t[i] + 1LL * i); cnta++;
t[i] += x; if (t[i] >= mod) t[i] -= mod;
Set[c].insert(131072LL * t[i] + 1LL * i); cnta++;
}
}
void add(int l, int r, long long x) {
x = (x + mod) % mod;
int c1 = l / BACKET, c2 = r / BACKET;
if (c1 == c2) add_range(l, r, x);
else {
add_range(l, (c1 + 1) * BACKET, x);
for (int i = c1 + 1; i <= c2; i++) {
u[i] += x; if (u[i] >= mod) u[i] -= mod;
}
}
}
int get_minimum_id() {
int id = -1;
for (int i = size_ / BACKET; i >= 0; i--) {
long long T = (mod + 1LL - u[i]); if (T >= mod) T -= mod;
auto itr = Set[i].lower_bound(131072LL * (T + 1LL)); cntb++;
if (itr != Set[i].begin()) {
itr--;
if (((*itr) >> 17) == T) { id = ((*itr) & 131071LL); break; }
}
}
return id;
}
void annihilation(int pos) {
Set[pos / BACKET].erase(131072LL * t[pos] + 1LL * pos);
used[pos] = true;
}
long long StringToMod(string S) {
long long r = 0;
for (int i = 0; i < S.size(); i++) {
r *= 10LL; r += (long long)(S[i] - '0');
while (r >= mod) r -= mod;
}
return r;
}
long long N, A[1 << 18], S[1 << 18];
vector<long long>F; char cc[1 << 18];
int main() {
//FILE *in = freopen("in9.txt", "r", stdin);
cin >> N;
for (int i = 1; i <= N; i++) {
scanf("%s", &cc); string V = "";
for (int j = 0; j < 100000; j++) {
if (cc[j] == 0) break;
V += cc[j]; cc[j] = 0;
}
A[i] = StringToMod(V);
}
for (int i = N; i >= 1; i--) A[i] = (A[i] - A[i - 1] + mod) % mod;
for (int i = 1; i <= N; i++) F.push_back(A[i]);
init(F);
for (int i = 1; i <= N; i++) {
int pos1 = get_minimum_id();
S[pos1] = i;
add(pos1 + 1, N + 1, -A[pos1]);
annihilation(pos1);
}
for (int i = 1; i <= N; i++) { if (i >= 2) printf(" "); printf("%d", S[i]); } printf("\n");
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |