CSES - Putka Open 2015 – finaali - Results
Submission details
Task:Ravintola
Sender:
Submission time:2015-12-20 17:09:40 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s1details
#30.06 s1details
#40.05 s1details
#50.06 s1details
#60.06 s2details
#70.06 s2details
#80.05 s2details
#90.05 s2details
#100.05 s2details
#11--3details
#12--3details
#13--3details
#14--3details
#15--3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:48:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int64_t i=0;i<events.size();i++) {
                    ^
input/code.cpp:59:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int64_t i=0;i<bar.size();i++) {
                    ^

Code

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

struct argh {
  int64_t s,e,id;
};

bool operator<(const argh &a1, const argh &a2) {
  if(a1.e < a2.e) return true;
  if(a1.e == a2.e && a1.s < a2.s) return true;
  if(a1.e == a2.e && a1.s == a2.s && a1.id < a2.id) return true;
  return false;
}

struct ev {
  int64_t t, type, id;
};

bool operator<(const ev &a1, const ev &a2) {
  if(a1.t < a2.t) return true;
  if(a1.t == a2.t && a1.type < a2.type) return true;
  if(a1.t == a2.t && a1.type == a2.type && a1.id < a2.id) return true;
  return false;
}


int main(void) 
{
  int64_t n;
  cin >> n;
  vector<argh> foo(n);
  vector<ev> events;
  for(int64_t i=0;i<n;i++) {
    int64_t a,b;
    cin >> a >> b;
    foo[i]=argh{a,b,i};
    events.push_back(ev{a, 1, i});
    events.push_back(ev{b, 0, i});
  }
  sort(foo.begin(), foo.end());
  sort(events.begin(), events.end());
  vector<int> tables(n,0);
  int64_t ti=0,maxti=0;
  vector<int64_t> bar(n);
  for(int64_t i=0;i<events.size();i++) {
    if(events[i].type) {
      for(ti=0;tables[ti] != 0;ti++);
      tables[ti]=1;
      bar[events[i].id]=ti;
      maxti=max(ti,maxti);
    } else {
      tables[bar[events[i].id]]=0;
    }
  }
  cout << maxti << '\n';
  for(int64_t i=0;i<bar.size();i++) {
    cout << bar[i]+1 << '\n';
  }
  return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
10
78 83
61 70
95 100
84 100
...

correct output
6
5
5
2
1
...

user output
5
5
5
2
1
...

Test 2

Group: 1

Verdict:

input
10
90 98
99 100
96 100
3 47
...

correct output
4
1
1
3
1
...

user output
3
1
1
3
1
...

Test 3

Group: 1

Verdict:

input
10
65 87
89 97
32 53
53 73
...

correct output
5
5
4
3
3
...

user output
4
5
4
3
3
...

Test 4

Group: 1

Verdict:

input
10
54 68
50 60
87 89
85 98
...

correct output
6
6
3
4
1
...

user output
5
6
3
4
1
...

Test 5

Group: 1

Verdict:

input
10
53 54
41 47
56 68
6 23
...

correct output
5
2
2
2
2
...

user output
4
2
2
2
2
...

Test 6

Group: 2

Verdict:

input
1000
421639537 911563318
736166797 959945771
397431507 584367626
330835287 620406496
...

correct output
358
264
215
218
262
...

user output
357
264
215
218
262
...

Test 7

Group: 2

Verdict:

input
1000
452773897 489658400
791565174 873685909
837939163 961670907
54444659 861374731
...

correct output
393
181
151
140
63
...

user output
392
181
151
140
63
...

Test 8

Group: 2

Verdict:

input
1000
689073468 881081127
613328959 683799585
688380485 930935455
629559449 915788743
...

correct output
388
115
358
93
170
...

user output
387
115
358
93
170
...

Test 9

Group: 2

Verdict:

input
1000
376658209 496021591
750793088 930681206
293307485 666877615
774206996 816529147
...

correct output
368
287
36
225
114
...

user output
367
287
36
225
114
...

Test 10

Group: 2

Verdict:

input
1000
273998160 725204323
241875005 614630291
765984835 939309031
345615468 836277449
...

correct output
384
240
215
156
163
...

user output
383
240
215
156
163
...

Test 11

Group: 3

Verdict:

input
100000
784035755 893627685
78761690 459329957
877042231 976087228
479438596 515807337
...

correct output
36779
4699
7608
7073
23546
...

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000
952007928 998571741
60494193 790262572
37935588 450716710
518464251 658961939
...

correct output
36979
5145
5964
3813
17811
...

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000
195552215 647391707
698053972 908728728
923590842 940850158
17166936 129136741
...

correct output
36760
17563
24436
3901
1722
...

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000
792681664 892304133
442916094 984949977
880260482 922213143
417012279 978533731
...

correct output
36633
5062
11088
8773
23538
...

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
662244341 835857878
88360474 126816291
245452241 989480216
32665049 226410123
...

correct output
36920
28994
8379
21303
3304
...

user output
(empty)