Task: | Thieves and Prisons |
Sender: | AngusRitossa |
Submission time: | 2019-03-10 06:51:45 +0200 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 8 |
#2 | ACCEPTED | 13 |
#3 | ACCEPTED | 14 |
#4 | ACCEPTED | 18 |
#5 | ACCEPTED | 47 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#2 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#3 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#4 | ACCEPTED | 0.08 s | 2, 4, 5 | details |
#5 | ACCEPTED | 0.08 s | 2, 4, 5 | details |
#6 | ACCEPTED | 0.08 s | 4, 5 | details |
#7 | ACCEPTED | 0.07 s | 4, 5 | details |
#8 | ACCEPTED | 0.06 s | 4, 5 | details |
#9 | ACCEPTED | 0.06 s | 1, 3, 4, 5 | details |
#10 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#11 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#12 | ACCEPTED | 0.06 s | 1, 3, 4, 5 | details |
#13 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#14 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#15 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#16 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#17 | ACCEPTED | 0.07 s | 1, 2, 3, 4, 5 | details |
#18 | ACCEPTED | 0.07 s | 1, 3, 4, 5 | details |
#19 | ACCEPTED | 0.10 s | 2, 5 | details |
#20 | ACCEPTED | 0.10 s | 2, 5 | details |
#21 | ACCEPTED | 0.11 s | 2, 5 | details |
#22 | ACCEPTED | 0.10 s | 5 | details |
#23 | ACCEPTED | 0.09 s | 5 | details |
#24 | ACCEPTED | 0.07 s | 3, 4, 5 | details |
#25 | ACCEPTED | 0.07 s | 3, 4, 5 | details |
#26 | ACCEPTED | 0.07 s | 3, 4, 5 | details |
#27 | ACCEPTED | 0.07 s | 3, 4, 5 | details |
#28 | ACCEPTED | 0.08 s | 4, 5 | details |
#29 | ACCEPTED | 0.06 s | 4, 5 | details |
#30 | ACCEPTED | 0.07 s | 4, 5 | details |
#31 | ACCEPTED | 0.07 s | 4, 5 | details |
#32 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#33 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#34 | ACCEPTED | 0.07 s | 2, 4, 5 | details |
#35 | ACCEPTED | 0.08 s | 2, 4, 5 | details |
#36 | ACCEPTED | 0.11 s | 3, 5 | details |
#37 | ACCEPTED | 0.12 s | 3, 5 | details |
#38 | ACCEPTED | 0.11 s | 3, 5 | details |
#39 | ACCEPTED | 0.12 s | 3, 5 | details |
#40 | ACCEPTED | 0.11 s | 5 | details |
#41 | ACCEPTED | 0.11 s | 5 | details |
#42 | ACCEPTED | 0.13 s | 5 | details |
#43 | ACCEPTED | 0.12 s | 5 | details |
#44 | ACCEPTED | 0.12 s | 2, 5 | details |
#45 | ACCEPTED | 0.11 s | 2, 5 | details |
#46 | ACCEPTED | 0.12 s | 2, 5 | details |
#47 | ACCEPTED | 0.12 s | 2, 5 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:9:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d%d%d", &n, &k, &m); ~~~~~^~~~~~~~~~~~~~~~~~~~~~ input/code.cpp:15:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf(" %c%d", &type[i], &a); ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
Code
#include <bits/stdc++.h> using namespace std; int n, k, m, upto, p[100010], inprison[100010], lastprisonbreak, lastopened[100010], pre[100010]; char type[100010]; int A[100010]; queue<int> occurrences[100010], breaks; int main() { scanf("%d%d%d", &n, &k, &m); fill_n(inprison, n+1, -1); fill_n(lastopened, k+1, -1); for (int i = 0; i < m; i++) { int a; scanf(" %c%d", &type[i], &a); A[i] = a; // Person a needs to be released from prison occurrences[a].push(i); if (type[i] == 'O') { upto %= k; upto++; pre[i] = lastopened[upto]; lastopened[upto] = i; breaks.push(i); } } upto = 0; priority_queue<pair<int, int>, vector<pair<int, int> >, greater<pair<int, int> > > pq; queue<int> q2; for (int i = 0; i < m; i++) { int a = A[i]; occurrences[a].pop(); if (type[i] == 'O') { // Opening a prison upto %= k; p[i] = ++upto; breaks.pop(); int nexbreak = 1e9; if (breaks.size()) nexbreak = breaks.front(); //printf("%d %lu - %d\n", i, pq.size(), nexbreak); bool wehave1 = 0; while (q2.size() && p[q2.front()]) q2.pop(); while (nexbreak != 1e9 && q2.size() && q2.front() <= pre[nexbreak]) { wehave1 = 1; p[q2.front()] = upto; while (q2.size() && p[q2.front()]) q2.pop(); } while (pq.size() && p[pq.top().second]) pq.pop(); if (!wehave1 && (pq.empty() || pq.top().first <= i || pq.top().second < pre[i])) // what a shame { printf("IMPOSSIBLE\n"); return 0; } if (!wehave1) { p[pq.top().second] = upto; pq.pop(); while (pq.size() && p[pq.top().second]) pq.pop(); } while (pq.size() && pq.top().first <= nexbreak) { p[pq.top().second] = upto; pq.pop(); while (pq.size() && p[pq.top().second]) pq.pop(); } } else { pq.push({occurrences[a].size() ? occurrences[a].front() : 1e9, i}); q2.push(i); } } if (pq.size() && pq.top().first != 1e9) { printf("IMPOSSIBLE\n"); return 0; } for (int i = 0; i < m; i++) { p[i] = max(p[i], 1); printf("%d ", p[i]); } printf("\n"); }
Test details
Test 1
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
1 1 1 C 1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
1 1 1 O 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 3
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
1 1 2 C 1 C 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 4
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
1 1 2 C 1 O 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 5
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
1 1 2 O 1 C 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 6
Group: 4, 5
Verdict: ACCEPTED
input |
---|
2 1 2 C 1 C 2 |
correct output |
---|
1 1 |
user output |
---|
1 1 |
Test 7
Group: 4, 5
Verdict: ACCEPTED
input |
---|
2 1 2 C 1 O 1 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 8
Group: 4, 5
Verdict: ACCEPTED
input |
---|
2 1 2 C 1 O 2 |
correct output |
---|
1 1 |
user output |
---|
1 1 |
Test 9
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 5 C 1 C 2 O 3 C 1 ... |
correct output |
---|
1 1 1 1 1 |
user output |
---|
1 1 1 1 1 |
Test 10
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 5 C 1 C 2 O 3 O 3 ... |
correct output |
---|
2 1 2 1 1 |
user output |
---|
1 2 1 2 1 |
Test 11
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 5 C 1 C 2 O 3 O 1 ... |
correct output |
---|
2 1 2 1 1 |
user output |
---|
1 2 1 2 1 |
Test 12
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 5 C 1 C 2 O 1 O 3 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 13
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 4 C 1 O 2 C 1 O 3 |
correct output |
---|
1 1 1 1 |
user output |
---|
1 1 2 2 |
Test 14
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 4 C 1 O 2 C 2 O 1 |
correct output |
---|
1 1 1 1 |
user output |
---|
1 1 2 2 |
Test 15
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 3 C 1 C 2 C 3 |
correct output |
---|
1 1 1 |
user output |
---|
1 1 1 |
Test 16
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
3 2 3 O 1 C 2 C 3 |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 17
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
input |
---|
2 2 7 C 1 O 2 O 2 O 2 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 18
Group: 1, 3, 4, 5
Verdict: ACCEPTED
input |
---|
4 2 5 C 2 O 3 C 1 O 4 ... |
correct output |
---|
1 1 1 1 1 |
user output |
---|
1 1 2 2 1 |
Test 19
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 1 C 2 C 3 C 4 ... |
correct output |
---|
50000 49999 49998 49997 49996 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 20
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 1 C 2 C 3 C 4 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... Truncated |
Test 21
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 1 C 2 C 3 C 4 ... |
correct output |
---|
20000 20000 20000 20000 20000 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 22
Group: 5
Verdict: ACCEPTED
input |
---|
100000 100 100000 C 1 C 2 C 3 C 4 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 2 3 4 5 6 7 8 9 10 11 12 13 ... Truncated |
Test 23
Group: 5
Verdict: ACCEPTED
input |
---|
100000 99 100000 C 1 C 2 C 3 C 4 ... |
correct output |
---|
IMPOSSIBLE |
user output |
---|
IMPOSSIBLE |
Test 24
Group: 3, 4, 5
Verdict: ACCEPTED
input |
---|
500 2 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 1 1 2 2 1 1 2 2 1 1 2 ... Truncated |
Test 25
Group: 3, 4, 5
Verdict: ACCEPTED
input |
---|
500 2 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ... |
user output |
---|
1 1 2 2 1 1 2 2 1 1 2 2 2 2 1 ... Truncated |
Test 26
Group: 3, 4, 5
Verdict: ACCEPTED
input |
---|
500 2 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 ... |
user output |
---|
1 1 2 2 2 2 1 1 1 2 2 1 1 1 1 ... Truncated |
Test 27
Group: 3, 4, 5
Verdict: ACCEPTED
input |
---|
500 2 500 C 384 O 62 C 387 C 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 ... Truncated |
Test 28
Group: 4, 5
Verdict: ACCEPTED
input |
---|
500 250 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 ... Truncated |
Test 29
Group: 4, 5
Verdict: ACCEPTED
input |
---|
500 250 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 8 9 7 ... Truncated |
Test 30
Group: 4, 5
Verdict: ACCEPTED
input |
---|
500 250 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 3 2 3 3 2 2 2 5 4 2 ... |
user output |
---|
1 1 2 2 7 3 4 3 10 4 5 5 6 8 9... Truncated |
Test 31
Group: 4, 5
Verdict: ACCEPTED
input |
---|
500 250 500 C 384 O 62 C 387 C 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 8 23 3 2 62 7 17 4 63 64 4... Truncated |
Test 32
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
500 500 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 ... Truncated |
Test 33
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
500 500 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 2 1 3 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 8 9 7 ... Truncated |
Test 34
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
500 500 500 C 384 O 62 C 387 O 473 ... |
correct output |
---|
1 1 1 1 2 1 3 3 3 2 2 2 2 4 5 ... |
user output |
---|
1 1 2 2 4 8 3 3 9 4 5 5 10 7 6... Truncated |
Test 35
Group: 2, 4, 5
Verdict: ACCEPTED
input |
---|
500 500 500 C 384 O 62 C 387 C 473 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 58 59 60 2 4 41 62 63 64 3... Truncated |
Test 36
Group: 3, 5
Verdict: ACCEPTED
input |
---|
100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 1 1 2 2 1 1 2 2 1 1 2 ... Truncated |
Test 37
Group: 3, 5
Verdict: ACCEPTED
input |
---|
100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 2 2 1 ... |
user output |
---|
1 1 2 2 1 1 2 2 1 1 2 2 2 1 2 ... Truncated |
Test 38
Group: 3, 5
Verdict: ACCEPTED
input |
---|
100000 2 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 2 2 ... |
user output |
---|
1 1 2 2 1 2 2 1 1 2 2 1 1 1 1 ... Truncated |
Test 39
Group: 3, 5
Verdict: ACCEPTED
input |
---|
100000 2 100000 C 89384 O 54062 C 85387 C 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 ... Truncated |
Test 40
Group: 5
Verdict: ACCEPTED
input |
---|
100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 ... Truncated |
Test 41
Group: 5
Verdict: ACCEPTED
input |
---|
100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 8 9 ... Truncated |
Test 42
Group: 5
Verdict: ACCEPTED
input |
---|
100000 50000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 3 2 3 3 3 3 3 3 4 5 ... |
user output |
---|
1 1 2 2 9 3 8 3 4 4 5 5 10 7 6... Truncated |
Test 43
Group: 5
Verdict: ACCEPTED
input |
---|
100000 50000 100000 C 89384 O 54062 C 85387 C 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 8 12423 12424 1887 1297 ... Truncated |
Test 44
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 ... Truncated |
Test 45
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 ... |
user output |
---|
1 1 2 2 3 3 4 4 5 5 6 6 7 8 9 ... Truncated |
Test 46
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 89384 O 54062 C 85387 O 53318 ... |
correct output |
---|
1 1 1 1 2 1 3 3 3 3 3 3 4 5 3 ... |
user output |
---|
1 1 2 2 8 9 3 3 4 4 5 5 7 6 10... Truncated |
Test 47
Group: 2, 5
Verdict: ACCEPTED
input |
---|
100000 100000 100000 C 89384 O 54062 C 85387 C 53318 ... |
correct output |
---|
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
user output |
---|
1 1 2339 3482 11039 3 8402 5 2... Truncated |