CSES - Datatähti 2015 loppu - Results
Submission details
Task:Urkupillit
Sender:eXeP
Submission time:2015-01-29 13:46:56 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.06 s1details
#30.05 s1details
#40.06 s1details
#50.06 s1details
#60.07 s2details
#70.27 s2details
#80.15 s2details
#90.16 s2details
#100.25 s2details
#11--3details
#120.55 s3details
#130.56 s3details
#140.52 s3details
#150.53 s3details

Code

/* 
 * File:   main.cpp
 * Author: piekask
 *
 * Created on 29. tammikuuta 2015, 12:20
 */

#include <bits/stdc++.h>

using namespace std;

/*
 * 
 */
int main(int argc, char** argv) {
    cin.sync_with_stdio(0);
    cin.tie(0);
    int q; cin >> q;
    while(q--){
    int n, k; cin >> n >> k;
    
    int dp[100001] = {0};
    int next = n;
    int kayt = 0;
    while(k>0){
        if(k>=next-1){
            dp[1+kayt] = next;
            k-=(next-1);
            next--;
            kayt++;
        }
        else{
            dp[n-k] = next;
            k = 0;
            next--;
        }
    }
    int idx = 1;
    int la = 1;
    while(idx<=n){
        if(dp[idx]==0){
            dp[idx] = la;
            la++;
        }
        idx++;
    }
    for(int i = 1; i <= n; i++)
        cout << dp[i] << " ";
    cout << endl;
    }
    return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
5 0

correct output
1 2 3 4 5 

user output
(empty)

Test 2

Group: 1

Verdict:

input
5 10

correct output
5 4 3 2 1 

user output
1 2 3 4 5 6 7 8 9 10 
1 2 3 4 5 6 7 8 9 10 
1 2 3 4 5 6 7 8 9 10 
1 2 3 4 5 6 7 8 9 10 
1 2 3 4 5 6 7 8 9 10 

Test 3

Group: 1

Verdict:

input
5 3

correct output
4 1 2 3 5 

user output
1 2 3 
1 2 3 
1 2 3 
1 2 3 
1 2 3 

Test 4

Group: 1

Verdict:

input
5 1

correct output
2 1 3 4 5 

user output





Test 5

Group: 1

Verdict:

input
5 2

correct output
3 1 2 4 5 

user output
1 2 
1 2 
1 2 
1 2 
1 2 

Test 6

Group: 2

Verdict:

input
100 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output





...

Test 7

Group: 2

Verdict:

input
100 4950

correct output
100 99 98 97 96 95 94 93 92 91...

user output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 8

Group: 2

Verdict:

input
100 2279

correct output
100 99 98 97 96 95 94 93 92 91...

user output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 9

Group: 2

Verdict:

input
100 2528

correct output
100 99 98 97 96 95 94 93 92 91...

user output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 10

Group: 2

Verdict:

input
100 4483

correct output
100 99 98 97 96 95 94 93 92 91...

user output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

Test 11

Group: 3

Verdict:

input
100000 0

correct output
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000 4999950000

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000 2969035543

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000 2495939870

correct output
100000 99999 99998 99997 99996...

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000 1279770330

correct output
100000 99999 99998 99997 99996...

user output
(empty)