CSES - Datatähti 2021 loppu - Results
Submission details
Task:Kolmijako
Sender:Epe
Submission time:2021-01-23 19:31:55 +0200
Language:C++ (C++11)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1, 2details
#2ACCEPTED0.01 s1, 2details
#30.01 s1, 2details
#40.01 s1, 2details
#5ACCEPTED0.01 s1, 2details
#60.01 s1, 2details
#70.01 s1, 2details
#8ACCEPTED0.01 s1, 2details
#90.01 s2details
#100.01 s2details
#110.01 s2details
#120.01 s2details
#130.01 s2details
#140.01 s2details
#150.01 s2details

Compiler report

input/code.cpp: In function 'bool ps(int)':
input/code.cpp:9:1: warning: no return statement in function returning non-void [-Wreturn-type]
 }
 ^

Code

#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
int arr[100];
int g[100];
int n;
bool ps(int x){
}
int main(){
cin >> n;
if(n == 3){
cout << "1 2 3\n";
exit(0);
}
int tsum = (((n*(n+1))/2)-6)/3;
int bins = 1;
stringstream ss;
int a[3]{tsum+1,tsum+2,tsum+3};
for(int i = n; i >= 1; i--){
int j;
for(j = 0; j < bins; j++){
if(a[j] >= i){
a[j] -= i;
ss << bins << " ";
break;
}
}
if(j == bins){
if(bins == 3){
break;
} else {
a[j] -= i;
ss << j << " ";
bins++;
}
}
}
if(a[0] == a[1] && a[0] == a[2] && a[0] == 0){
cout << "POSSIBLE\n";
cout << ss.rdbuf() << endl;
} else {
cout << "IMPOSSIBLE\n" << endl;
}
}

Test details

Test 1

Group: 1, 2

Verdict: ACCEPTED

input
3

correct output
1 2 3 

user output
1 2 3

Test 2

Group: 1, 2

Verdict: ACCEPTED

input
4

correct output
IMPOSSIBLE

user output
IMPOSSIBLE

Test 3

Group: 1, 2

Verdict:

input
5

correct output
1 3 1 3 2 

user output
POSSIBLE
1 2 2 3 3 

Test 4

Group: 1, 2

Verdict:

input
6

correct output
1 3 2 2 1 3 

user output
POSSIBLE
1 1 2 3 3 3 

Test 5

Group: 1, 2

Verdict: ACCEPTED

input
7

correct output
IMPOSSIBLE

user output
IMPOSSIBLE

Test 6

Group: 1, 2

Verdict:

input
8

correct output
2 3 1 2 3 3 2 1 

user output
POSSIBLE
1 1 2 3 3 3 3 3 

Test 7

Group: 1, 2

Verdict:

input
9

correct output
1 2 3 1 2 3 3 2 1 

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

Test 8

Group: 1, 2

Verdict: ACCEPTED

input
10

correct output
IMPOSSIBLE

user output
IMPOSSIBLE

Test 9

Group: 2

Verdict:

input
42

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

user output
POSSIBLE
1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 ...
Truncated

Test 10

Group: 2

Verdict:

input
95

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

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated

Test 11

Group: 2

Verdict:

input
96

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

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated

Test 12

Group: 2

Verdict:

input
97

correct output
IMPOSSIBLE

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated

Test 13

Group: 2

Verdict:

input
98

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

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated

Test 14

Group: 2

Verdict:

input
99

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

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated

Test 15

Group: 2

Verdict:

input
100

correct output
IMPOSSIBLE

user output
POSSIBLE
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...
Truncated