이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Challenge: Accepted
#include <iostream>
#include <algorithm>
#include <utility>
#include <vector>
#define ll long long
#define maxn 100005
#define ff first
#define ss second
#define io ios_base::sync_with_stdio(0);cin.tie(0);
#define pii pair<int, int>
using namespace std;
//#include <bits/extc++.h>
//using namespace __gnu_pbds;
//template<lcass T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
//find by order, order of key
ll q[maxn], b[maxn], c[maxn];
int a[maxn], found[maxn];
int main() {
io
int n;
cin >> n;
for (int i = 0;i < n;i++) cin >> q[i];
ll tb = 0;
for (int i = 0;i < n;i++) {
b[i] = q[i] - (i ? q[i - 1] : 0);
c[i] = tb + 1 - b[i];
//cout << b[i] << " ";
tb += b[i];
}
//cout << endl;
for (int i = 0;i < n;i++) {
for (int j = n - 1;j >= 0;j--) {
if (found[j]) continue;
if (c[j] == 0) {
a[j] = n - i;
found[j] = 1;
for (int k = j + 1;k < n;k++) c[k] -= b[j];
break;
}
}
}
for (int i = 0;i < n;i++) cout << a[i] << " ";
cout << "\n";
}
/*
4
1 2 5 6
6
1 3 5 9 11 21
*/
# | 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... |