#include <bits/stdc++.h>
#define FOR(i, x, n) for(int i = x; i < n; i++)
#define F0R(i, n) FOR(i, 0, n)
#define ROF(i, x, n) for(int i = n - 1; i >= x; i--)
#define R0F(i, n) ROF(i, 0, n)
#define WTF cout << "WTF" << endl
#define IOS ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define F first
#define S second
#define PB push_back
#define ALL(x) x.begin(), x.end()
#define RALL(x) x.rbegin(), x.rend()
using namespace std;
typedef long long LL;
typedef pair<int, int> PII;
typedef pair<LL, LL> PLL;
typedef vector<int> VI;
typedef vector<LL> VLL;
typedef vector<PII> VPII;
typedef vector<PLL> VPLL;
const int N = 1e5 + 7;
const int LOG = 22;
const int INF = 1e9 + 7;
int n, k;
int ns[N], ans[N];
int lst[N], pl[N], big[N];
PII st[N];
int main() {
IOS;
cin >> n >> k;
F0R(i, n) cin >> ns[i];
if (ns[n - 1] != -1) return cout << -1, 0;
F0R(i, n) if (ns[i] == -1) ns[i] = n + 1;
fill(pl, pl + n + 2, n + 1);
R0F(i, n) {
pl[ ns[i] ] = i;
//cout << "pl[" << ns[i] << "] = " << i << endl;
if (ns[i] == n + 1) continue;
if (ns[i] == 1) lst[i] = i;
else lst[i] = pl[ ns[i] - 1 ];
}
//F0R(i, n) cout << lst[i] << ' '; cout << endl;
stack<int> keep;
R0F(i, n) {
while(!keep.empty() && ns[keep.top()] < ns[i]) keep.pop();
big[i] = n + 1;
if (!keep.empty()) big[i] = keep.top();
keep.push(i);
}
F0R(i, n) if (ns[i] != 1 && ns[i] != n + 1)
if (lst[i] > big[i]) return cout << -1, 0;
F0R(i, n) st[i] = {ns[i], i};
sort(st, st + n);
int v = 1;
F0R(i, n) ans[ st[i].S ] = v++;
v = n;
F0R(i, n) if (ns[i] == n + 1) ans[i] = v--;
F0R(i, n) cout << ans[i] << ' ';
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
15 ms |
1936 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
15 ms |
1936 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |