CSES - Datatähti 2015 loppu - Results
Submission details
Task:Urkupillit
Sender:Dentosal
Submission time:2015-01-29 17:12:31 +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.07 s1details
#50.06 s1details
#60.06 s2details
#70.06 s2details
#80.06 s2details
#90.06 s2details
#100.06 s2details
#110.09 s3details
#120.09 s3details
#130.09 s3details
#140.09 s3details
#150.09 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:34:15: warning: unused variable 'mode' [-Wunused-variable]
  unsigned int mode=1;
               ^

Code

#include <iostream>
#include <algorithm>
#include <cmath>

using namespace std;

unsigned int urut[100001];
unsigned int n;
unsigned int k;

inline bool isDone() {
	unsigned int pairs=0;
	if (n<2) {return 0;}
	for (unsigned int i=1; i<n; ++i) {
		if (urut[i-1]>urut[i]) {
			++pairs;
		}
	}
	return (pairs==k);
}



int main() {
	cin >> n;
	cin >> k;


	for (unsigned int i = 0; i < n; ++i) {
		urut[i] = i+1;
	}


	unsigned int mode=1;
	unsigned int ptr=0;
	for (unsigned int i=0; i<n;++i){
		swap(urut[ptr], urut[ptr+1]);
		++ptr;
		++ptr;
		if (ptr>n-1)ptr=0;
		if (--k<1)break;
	}



	for (unsigned int i=0; i<n; ++i){cout << urut[i]+1 << " ";}
	cout << endl;




	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
5 0

correct output
1 2 3 4 5 

user output
2 3 4 5 1 

Test 2

Group: 1

Verdict:

input
5 10

correct output
5 4 3 2 1 

user output
2 3 4 5 1 

Test 3

Group: 1

Verdict:

input
5 3

correct output
4 1 2 3 5 

user output
3 2 5 4 1 

Test 4

Group: 1

Verdict:

input
5 1

correct output
2 1 3 4 5 

user output
3 2 4 5 6 

Test 5

Group: 1

Verdict:

input
5 2

correct output
3 1 2 4 5 

user output
3 2 5 4 6 

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
2 3 4 5 6 7 8 9 10 11 12 13 14...

Test 7

Group: 2

Verdict:

input
100 4950

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

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

Test 8

Group: 2

Verdict:

input
100 2279

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

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

Test 9

Group: 2

Verdict:

input
100 2528

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

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

Test 10

Group: 2

Verdict:

input
100 4483

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

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

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
2 3 4 5 6 7 8 9 10 11 12 13 14...

Test 12

Group: 3

Verdict:

input
100000 4999950000

correct output
100000 99999 99998 99997 99996...

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

Test 13

Group: 3

Verdict:

input
100000 2969035543

correct output
100000 99999 99998 99997 99996...

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

Test 14

Group: 3

Verdict:

input
100000 2495939870

correct output
100000 99999 99998 99997 99996...

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

Test 15

Group: 3

Verdict:

input
100000 1279770330

correct output
100000 99999 99998 99997 99996...

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