forked from sameer2800/Lightoj-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1187-lining_up_students.cpp
96 lines (73 loc) · 1.59 KB
/
1187-lining_up_students.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#include <bits/stdc++.h>
#define ll long long
#define MAX 100100
using namespace std;
ll arr[100100];
vector <pair <ll, ll> > v;
struct sam {
int count;
};
struct sam nodes[510100];
void initilize(int node)
{
nodes[node].count = 0;
}
void buildtree(int node, int start, int end)
{
if (start > end)
return;
if (start == end)
{
nodes[node].count = 1;
return;
}
int mid = start + end;
mid /= 2;
buildtree(node * 2 + 1, start , mid);
buildtree(node * 2 + 2, mid + 1, end);
nodes[node].count = nodes[2 * node + 1].count + nodes[2 * node + 2].count;
}
ll deleter(int node, int start, int end, int pos)
{
//cout << node << " " << start << " " << end << " " << pos << endl;
if (start > end)
return -1;
if (start == end) {
nodes[node].count = 0;
return start;
}
nodes[node].count--;
int mid = start + end;
mid /= 2;
if (nodes[node * 2 + 1].count >= pos) {
return deleter(node * 2 + 1, start, mid, pos);
} else {
return deleter(node * 2 + 2, mid + 1, end, pos - nodes[node * 2 + 1].count);
}
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("/home/sameer/Documents/sameer/input.sam", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
ll i, j, k, n, m, t, cont, a, b;
cin >> t;
ll cases = t;
while (t--) {
cin >> n ;
v.clear();
for (i = 0; i < n; i++)
cin >> arr[i];
buildtree(0, 0, n - 1);
ll ans ;
//cout << nodes[1].count << endl;
for (i = n - 1; i >= 0; i--) {
ans = deleter(0, 0, n - 1, i + 1 - arr[i]);
//cout << "--------------------\n";
//cout << ans << endl;
}
cout << "Case " << cases - t << ": " << ans + 1 << endl;
}
return 0;
}