CSES - Aalto Competitive Programming 2024 - wk3 - Wed - Results
Submission details
Task:Sorting coins
Sender:aalto2024c_009
Submission time:2024-09-18 17:12:53 +0300
Language:C++11
Status:READY
Result:
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#20.00 sdetails
#30.00 sdetails
#4ACCEPTED0.00 sdetails
#50.00 sdetails
#60.00 sdetails
#70.00 sdetails
#80.00 sdetails
#90.00 sdetails
#100.00 sdetails
#110.00 sdetails
#120.00 sdetails
#13ACCEPTED0.00 sdetails
#140.00 sdetails
#150.00 sdetails
#160.00 sdetails
#17ACCEPTED0.00 sdetails
#180.00 sdetails
#190.00 sdetails
#200.00 sdetails
#21ACCEPTED0.00 sdetails
#220.00 sdetails
#230.00 sdetails
#24ACCEPTED0.00 sdetails
#25ACCEPTED0.00 sdetails
#26ACCEPTED0.00 sdetails
#27ACCEPTED0.00 sdetails
#280.00 sdetails
#29ACCEPTED0.00 sdetails
#300.00 sdetails
#310.00 sdetails
#320.00 sdetails
#330.00 sdetails
#340.00 sdetails
#350.00 sdetails
#360.00 sdetails
#370.00 sdetails
#380.00 sdetails
#390.00 sdetails
#400.00 sdetails
#410.00 sdetails
#420.00 sdetails
#430.00 sdetails
#440.00 sdetails
#450.00 sdetails
#460.00 sdetails
#470.00 sdetails
#480.00 sdetails
#490.00 sdetails
#500.00 sdetails
#510.06 sdetails
#520.06 sdetails
#530.10 sdetails
#540.06 sdetails
#550.06 sdetails
#560.06 sdetails
#570.08 sdetails
#580.09 sdetails
#590.07 sdetails
#600.09 sdetails

Code

#include <bits/stdc++.h>

using namespace std;
#define int long long

// g++ <filename>.cpp -g -Wall -Wextra -DDEBUG -o <executable>

// copied from: https://codeforces.com/blog/entry/79024
// === Debug macro starts here ===

int recur_depth = 0;
#ifdef DEBUG
#define dbg(x) {++recur_depth; auto x_=x; --recur_depth; cerr<<string(recur_depth, '\t')<<"\e[91m"<<__func__<<":"<<__LINE__<<"\t"<<#x<<" = "<<x_<<"\e[39m"<<endl;}
#else
#define dbg(x)
#endif
template<typename Ostream, typename Cont>
typename enable_if<is_same<Ostream,ostream>::value, Ostream&>::type operator<<(Ostream& os,  const Cont& v){
	os<<"[";
	for(auto& x:v){os<<x<<", ";}
	return os<<"]";
}
template<typename Ostream, typename ...Ts>
Ostream& operator<<(Ostream& os,  const pair<Ts...>& p){
	return os<<"{"<<p.first<<", "<<p.second<<"}";
}

// === Debug macro ends here ===

signed main() {
    
    int n, m; // coins, holes
    cin >> n >> m;

    vector<int> r_coins;
    vector<int> r_holes;
    

    for (int i = 0; i < n; i++) {
        int a;
        cin >> a;
        r_coins.push_back(a);
    }
    
    for (int i = 0; i < m; i++) {
        int b;
        cin >> b;
        r_holes.push_back(b);
    }


    // find max to save time: 
    int max_hole = *std::max_element(r_holes.begin(), r_holes.end());

    // find first occurrence of every hole radius and save to array
    const int INF = 10e9+5;
    vector<int> first_occurrence(m, INF);
    
    for (int i = 0; i < m; i++) 
    {

        if (first_occurrence[r_holes[i]] == INF) {
            first_occurrence[r_holes[i]] = i+1; // set index starting from 1

            int idx = r_holes[i] - 1;
            // also set first_occurrence for all smaller numbers
            while(idx > 0) {
                if (first_occurrence[idx] == INF) {
                    first_occurrence[idx] = i+1;
                }
                idx--;
            }
        }
    }

    dbg(first_occurrence);


    // TODO: first occurrence is not enough, bc there could be a bigger hole first

    for (int i = 0; i < n; i++) {

        int coin = r_coins[i];

        // try max first
        if (coin > max_hole) {
            cout << m+1 << " ";
        }
        else {
            while (first_occurrence[coin] == INF) { coin++; }
            cout << first_occurrence[coin] << " ";
        }
    }


    // for (auto c : r_coins) {
    //     if (c > max_hole) cout << m+1 << " ";
    //     for (int i = 0; i < m; i++) {
    //         if (c <= r_holes[i]) {
    //             cout << i+1 << " ";
    //             break;
    //         }
    //     }
    // }

    return 0;
}

Test details

Test 1

Verdict: ACCEPTED

input
1 1
10 

correct output

user output

Test 2

Verdict:

input
2 1
5 1 

correct output
2 1 

user output
2 0 

Test 3

Verdict:

input
2 3
6 9 
7 3 5 

correct output
1 4 

user output
5 4 

Test 4

Verdict: ACCEPTED

input
2 1
7 9 

correct output
2 2 

user output
2 2 

Test 5

Verdict:

input
3 2
7 1 5 
2 5 

correct output
3 1 2 

user output
3 0 1 

Test 6

Verdict:

input
3 6
8 1 7 
2 5 2 3 8 9 

correct output
5 1 5 

user output
0 1 4113 

Test 7

Verdict:

input
3 2
1 10 1 
6 7 

correct output
1 3 1 

user output
0 3 0 

Test 8

Verdict:

input
4 4
5 6 9 6 
8 4 10 9 

correct output
1 1 3 1 

user output
57473 35404341589813 0 3833443...

Test 9

Verdict:

input
4 3
8 2 4 2 
6 9 1 

correct output
2 1 1 1 

user output
8 33 22906492267 33 

Test 10

Verdict:

input
4 3
1 2 4 7 
3 5 8 

correct output
1 1 2 3 

user output
33 33 22906492267 49 

Test 11

Verdict:

input
5 3
4 10 10 5 1 
1 9 9 

correct output
2 4 4 2 1 

user output
22906492267 4 4 -2292902351554...

Test 12

Verdict:

input
5 9
1 6 7 5 6 
1 1 2 3 4 4 9 10 10 

correct output
1 7 7 7 7 

user output
1 145 145 145 145 

Test 13

Verdict: ACCEPTED

input
5 1
4 5 10 8 5 

correct output
2 2 2 2 2 

user output
2 2 2 2 2 

Test 14

Verdict:

input
5 9
7 5 8 5 5 
1 10 3 9 4 6 9 3 5 

correct output
2 2 2 2 2 

user output
145 6 145 6 6 

Test 15

Verdict:

input
5 1
5 5 1 2 4 

correct output
2 2 1 1 1 

user output
2 2 0 0 4 

Test 16

Verdict:

input
5 8
3 1 2 8 8 
1 3 5 5 5 7 8 9 

correct output
2 1 2 7 7 

user output
2 1 2 0 0 

Test 17

Verdict: ACCEPTED

input
5 2
5 2 8 10 5 
1 1 

correct output
3 3 3 3 3 

user output
3 3 3 3 3 

Test 18

Verdict:

input
5 2
3 1 6 8 1 
5 8 

correct output
1 1 2 2 1 

user output
49 0 6 0 0 

Test 19

Verdict:

input
5 8
5 8 7 7 8 
2 3 7 9 9 9 10 10 

correct output
3 4 3 3 4 

user output
3 0 3 3 0 

Test 20

Verdict:

input
5 6
4 3 10 3 6 
10 8 7 9 4 1 

correct output
1 1 1 1 1 

user output
5 5 0 5 0 

Test 21

Verdict: ACCEPTED

input
10 16
1 2 7 7 10 9 1 4 6 9 
3 1 5 7 5 8 9 5 6 3 1 2 8 8 3 ...

correct output
1 1 4 4 17 7 1 3 4 7 

user output
1 1 4 4 17 7 1 3 4 7 

Test 22

Verdict:

input
10 4
8 10 5 2 5 3 1 9 5 9 
1 1 7 5 

correct output
5 5 3 3 3 3 1 5 3 5 

user output
5 5 4113 0 4113 0 1 5 4113 5 

Test 23

Verdict:

input
10 4
6 8 1 4 10 1 10 3 1 1 
5 8 9 3 

correct output
2 2 1 1 5 1 5 1 1 1 

user output
0 0 4 0 5 4 5 4 4 4 

Test 24

Verdict: ACCEPTED

input
10 16
8 4 1 7 3 10 1 8 9 5 
7 3 9 9 9 10 2 10 8 5 8 7 7 8 ...

correct output
3 1 1 1 1 6 1 3 3 1 

user output
3 1 1 1 1 6 1 3 3 1 

Test 25

Verdict: ACCEPTED

input
10 11
4 4 4 6 6 3 7 9 6 4 
1 2 3 3 4 4 7 8 9 10 10 

correct output
5 5 5 7 7 3 7 9 7 5 

user output
5 5 5 7 7 3 7 9 7 5 

Test 26

Verdict: ACCEPTED

input
10 17
9 10 1 3 6 8 6 9 10 9 
9 2 6 1 2 4 9 3 10 6 1 4 9 4 8...

correct output
1 9 1 1 1 1 1 1 9 1 

user output
1 9 1 1 1 1 1 1 9 1 

Test 27

Verdict: ACCEPTED

input
10 5
2 4 8 3 2 7 7 2 9 1 
4 6 1 6 4 

correct output
1 1 6 1 1 6 6 1 6 1 

user output
1 1 6 1 1 6 6 1 6 1 

Test 28

Verdict:

input
10 6
8 5 7 2 7 3 6 7 1 9 
1 2 2 6 9 9 

correct output
5 4 5 2 5 4 4 5 1 5 

user output
0 0 4113 2 4113 0 0 4113 1 232...

Test 29

Verdict: ACCEPTED

input
10 14
3 9 1 10 7 4 9 6 8 6 
1 1 2 3 3 5 5 6 7 8 9 9 10 10 

correct output
4 11 1 13 9 6 11 8 10 8 

user output
4 11 1 13 9 6 11 8 10 8 

Test 30

Verdict:

input
10 2
3 8 2 3 4 7 1 1 7 2 
5 8 

correct output
1 2 1 1 1 2 1 1 2 1 

user output
49 0 0 49 22906492267 3 0 0 3 ...

Test 31

Verdict:

input
100 109
670851894 542702872 156237497 ...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 32

Verdict:

input
100 104
65679420 148186648 745144547 5...

correct output
8 16 75 8 68 22 48 45 56 99 93...

user output
(empty)

Test 33

Verdict:

input
100 120
327701031 843462639 697056609 ...

correct output
1 10 2 1 1 10 1 6 1 2 1 2 2 2 ...

user output
(empty)

Test 34

Verdict:

input
100 87
973756781 787585117 426104879 ...

correct output
30 3 3 3 3 3 3 3 7 1 1 1 1 3 3...

user output
(empty)

Test 35

Verdict:

input
100 30
259467422 179425210 302226641 ...

correct output
10 6 11 26 21 5 4 25 6 25 6 25...

user output
(empty)

Test 36

Verdict:

input
100 17
619610888 28975240 267230415 3...

correct output
11 2 4 7 18 3 10 11 17 10 3 15...

user output
(empty)

Test 37

Verdict:

input
100 2
536076934 655217422 133320243 ...

correct output
1 1 1 3 3 3 1 3 1 3 1 3 1 1 3 ...

user output
(empty)

Test 38

Verdict:

input
100 33
789380894 994229768 42675899 9...

correct output
1 34 1 1 1 1 1 1 1 1 1 1 1 1 1...

user output
(empty)

Test 39

Verdict:

input
100 47
246778198 676999670 608531210 ...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 40

Verdict:

input
100 123
886976100 68201365 172296705 8...

correct output
104 10 23 102 55 94 62 53 10 1...

user output
(empty)

Test 41

Verdict:

input
200 380
317524454 41051177 567149094 1...

correct output
1 1 4 1 1 14 8 8 8 14 1 8 1 1 ...

user output
(empty)

Test 42

Verdict:

input
200 46
392347176 726442861 545265216 ...

correct output
17 27 22 17 17 22 24 24 14 17 ...

user output
(empty)

Test 43

Verdict:

input
200 90
248312993 106444472 194127938 ...

correct output
21 6 15 26 1 32 26 26 68 85 90...

user output
(empty)

Test 44

Verdict:

input
200 340
798996025 496231366 876215524 ...

correct output
270 170 293 217 337 3 53 124 2...

user output
(empty)

Test 45

Verdict:

input
200 373
589488280 542132074 375966293 ...

correct output
1 1 1 3 1 1 1 1 3 1 6 1 1 1 6 ...

user output
(empty)

Test 46

Verdict:

input
200 385
196646115 242041521 295990544 ...

correct output
2 2 2 5 5 5 2 5 24 2 2 13 1 2 ...

user output
(empty)

Test 47

Verdict:

input
200 171
393795758 726432748 126764724 ...

correct output
64 127 18 63 59 13 8 17 65 1 1...

user output
(empty)

Test 48

Verdict:

input
200 202
942051979 368818134 268535120 ...

correct output
5 1 1 1 5 1 1 1 1 1 1 1 1 1 5 ...

user output
(empty)

Test 49

Verdict:

input
200 45
633221062 364986147 972778007 ...

correct output
1 1 46 1 1 1 2 5 1 1 2 1 1 1 1...

user output
(empty)

Test 50

Verdict:

input
200 338
454221387 88895945 317597498 4...

correct output
142 29 99 134 182 88 235 278 2...

user output
(empty)

Test 51

Verdict:

input
100000 28757
118267157 851671329 411822891 ...

correct output
1 17 1 1 1 5 1 1 1 1 1 5 1 1 1...

user output
(empty)

Test 52

Verdict:

input
100000 18305
702302355 6062709 611429541 54...

correct output
12872 122 11266 9987 7473 9155...

user output
(empty)

Test 53

Verdict:

input
100000 95231
656622458 70589811 632582055 4...

correct output
62527 6715 60175 47354 58575 8...

user output
(empty)

Test 54

Verdict:

input
100000 30329
45713456 729104659 758685635 8...

correct output
1333 22090 23000 25105 6039 20...

user output
(empty)

Test 55

Verdict:

input
100000 31228
247919198 225373356 731438419 ...

correct output
1 1 1 1 16 1 1 1 1 1 1 1 1 1 1...

user output
(empty)

Test 56

Verdict:

input
100000 30512
675116653 115272339 718909731 ...

correct output
20571 3556 21916 12569 11110 2...

user output
(empty)

Test 57

Verdict:

input
100000 75350
239099439 812355621 986530470 ...

correct output
1 2 203 1 2 1 2 2 1 1 203 17 2...

user output
(empty)

Test 58

Verdict:

input
100000 87421
916970017 111389270 307679149 ...

correct output
80168 9865 27064 35762 21561 8...

user output
(empty)

Test 59

Verdict:

input
100000 37351
409368120 919782880 717179531 ...

correct output
15405 34298 26803 6413 9862 63...

user output
(empty)

Test 60

Verdict:

input
100000 92760
574361642 194853225 729709108 ...

correct output
53251 18025 67482 3845 17916 7...

user output
(empty)