Task: | Ravintola |
Sender: | |
Submission time: | 2015-12-20 13:38:39 +0200 |
Language: | C++ |
Status: | READY |
Result: | 100 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 15 |
#2 | ACCEPTED | 41 |
#3 | ACCEPTED | 44 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.06 s | 1 | details |
#2 | ACCEPTED | 0.05 s | 1 | details |
#3 | ACCEPTED | 0.06 s | 1 | details |
#4 | ACCEPTED | 0.04 s | 1 | details |
#5 | ACCEPTED | 0.05 s | 1 | details |
#6 | ACCEPTED | 0.06 s | 2 | details |
#7 | ACCEPTED | 0.06 s | 2 | details |
#8 | ACCEPTED | 0.06 s | 2 | details |
#9 | ACCEPTED | 0.06 s | 2 | details |
#10 | ACCEPTED | 0.05 s | 2 | details |
#11 | ACCEPTED | 0.20 s | 3 | details |
#12 | ACCEPTED | 0.20 s | 3 | details |
#13 | ACCEPTED | 0.21 s | 3 | details |
#14 | ACCEPTED | 0.20 s | 3 | details |
#15 | ACCEPTED | 0.20 s | 3 | details |
Code
#include <iostream> #include <vector> #include <algorithm> #include <utility> #include <set> typedef long long LL; using namespace std; int main(){ LL n; cin >> n; vector<pair<pair<LL,LL>, LL> > v; // start, end, group id for(int i = 0; i < n; i++){ LL x,y; cin >> x >> y; v.push_back({{x,y},i}); } sort(v.begin(), v.end()); multiset<pair<LL,LL> > is_freed; // time, table id set<LL> tables; LL next_table = 1; vector<pair<LL,LL > > ans; // group id, table for(auto interval : v){ LL start = interval.first.first; LL end = interval.first.second; LL group_id = interval.second; while(!is_freed.empty() && is_freed.begin()->first <= start){ tables.insert(is_freed.begin()->second); is_freed.erase(is_freed.begin()); } LL table; if(tables.size() != 0){ table = *tables.begin(); tables.erase(tables.begin()); } else{ table = next_table; next_table++; } is_freed.insert({end, table}); ans.push_back({group_id, table}); } sort(ans.begin(), ans.end()); cout << next_table - 1 << "\n"; for(auto x : ans) cout << x.second << "\n"; }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
10 78 83 61 70 95 100 84 100 ... |
correct output |
---|
6 5 5 2 1 ... |
user output |
---|
6 5 5 2 1 ... |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
10 90 98 99 100 96 100 3 47 ... |
correct output |
---|
4 1 1 3 1 ... |
user output |
---|
4 1 1 3 1 ... |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
10 65 87 89 97 32 53 53 73 ... |
correct output |
---|
5 5 4 3 3 ... |
user output |
---|
5 5 4 3 3 ... |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
10 54 68 50 60 87 89 85 98 ... |
correct output |
---|
6 6 3 4 1 ... |
user output |
---|
6 6 3 4 1 ... |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
10 53 54 41 47 56 68 6 23 ... |
correct output |
---|
5 2 2 2 2 ... |
user output |
---|
5 2 2 3 2 ... |
Test 6
Group: 2
Verdict: ACCEPTED
input |
---|
1000 421639537 911563318 736166797 959945771 397431507 584367626 330835287 620406496 ... |
correct output |
---|
358 264 215 218 262 ... |
user output |
---|
358 264 215 218 262 ... |
Test 7
Group: 2
Verdict: ACCEPTED
input |
---|
1000 452773897 489658400 791565174 873685909 837939163 961670907 54444659 861374731 ... |
correct output |
---|
393 181 151 140 63 ... |
user output |
---|
393 181 151 140 63 ... |
Test 8
Group: 2
Verdict: ACCEPTED
input |
---|
1000 689073468 881081127 613328959 683799585 688380485 930935455 629559449 915788743 ... |
correct output |
---|
388 115 358 93 170 ... |
user output |
---|
388 115 358 93 170 ... |
Test 9
Group: 2
Verdict: ACCEPTED
input |
---|
1000 376658209 496021591 750793088 930681206 293307485 666877615 774206996 816529147 ... |
correct output |
---|
368 287 36 225 114 ... |
user output |
---|
368 287 36 225 114 ... |
Test 10
Group: 2
Verdict: ACCEPTED
input |
---|
1000 273998160 725204323 241875005 614630291 765984835 939309031 345615468 836277449 ... |
correct output |
---|
384 240 215 156 163 ... |
user output |
---|
384 240 215 156 163 ... |
Test 11
Group: 3
Verdict: ACCEPTED
input |
---|
100000 784035755 893627685 78761690 459329957 877042231 976087228 479438596 515807337 ... |
correct output |
---|
36779 4699 7608 7073 23546 ... |
user output |
---|
36779 4699 7608 7073 23546 ... |
Test 12
Group: 3
Verdict: ACCEPTED
input |
---|
100000 952007928 998571741 60494193 790262572 37935588 450716710 518464251 658961939 ... |
correct output |
---|
36979 5145 5964 3813 17811 ... |
user output |
---|
36979 5145 5964 3813 17811 ... |
Test 13
Group: 3
Verdict: ACCEPTED
input |
---|
100000 195552215 647391707 698053972 908728728 923590842 940850158 17166936 129136741 ... |
correct output |
---|
36760 17563 24436 3901 1722 ... |
user output |
---|
36760 17563 24436 3901 1722 ... |
Test 14
Group: 3
Verdict: ACCEPTED
input |
---|
100000 792681664 892304133 442916094 984949977 880260482 922213143 417012279 978533731 ... |
correct output |
---|
36633 5062 11088 8773 23538 ... |
user output |
---|
36633 5062 11088 8773 23538 ... |
Test 15
Group: 3
Verdict: ACCEPTED
input |
---|
100000 662244341 835857878 88360474 126816291 245452241 989480216 32665049 226410123 ... |
correct output |
---|
36920 28994 8379 21303 3304 ... |
user output |
---|
36920 28994 8379 21303 3304 ... |