CSES - Datatähti 2021 loppu - Results
Submission details
Task:Kolmijako
Sender:lady-stardust
Submission time:2021-01-23 16:49:27 +0200
Language:C++ (C++17)
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
Test results
testverdicttimegroup
#10.01 s1, 2details
#20.01 s1, 2details
#30.01 s1, 2details
#40.01 s1, 2details
#50.01 s1, 2details
#6ACCEPTED0.01 s1, 2details
#70.01 s1, 2details
#80.01 s1, 2details
#90.01 s2details
#100.01 s2details
#110.01 s2details
#120.01 s2details
#130.01 s2details
#140.01 s2details
#150.01 s2details

Code

#include <bits/stdc++.h>
#include <unordered_map>
#define ll long long
#define ull unsigned long long
using namespace std;
vector<int> used(101, 0);
bool haku(ll sum, ll below, ll target1, int x) {
if (sum == target1) return true;
for (ll i = below - 1; i >= 1; i--) {
if (!used[i]) {
if (i + sum <= target1) {
used[i] = x;
if (haku(i + sum, i, target1, x)) {
return true;
}
used[i] = 0;
}
}
}
return false;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
istringstream cin(R"(8)");
ll n; cin >> n;
ll target = (n * (n + 1))/2/3;
if (target % 3 != 0) {
cout << "IMPOSSIBLE";
return 0;
}
haku(0, n + 1, target-1, 1);
haku(0, n + 1, target, 2);
haku(0, n + 1, target+1, 3);
for (int i = 1; i <= n; i++) {
cout << used[i] << " ";
}
}

Test details

Test 1

Group: 1, 2

Verdict:

input
3

correct output
1 2 3 

user output
3 3 1 3 2 3 2 1 

Test 2

Group: 1, 2

Verdict:

input
4

correct output
IMPOSSIBLE

user output
3 3 1 3 2 3 2 1 

Test 3

Group: 1, 2

Verdict:

input
5

correct output
1 3 1 3 2 

user output
3 3 1 3 2 3 2 1 

Test 4

Group: 1, 2

Verdict:

input
6

correct output
1 3 2 2 1 3 

user output
3 3 1 3 2 3 2 1 

Test 5

Group: 1, 2

Verdict:

input
7

correct output
IMPOSSIBLE

user output
3 3 1 3 2 3 2 1 

Test 6

Group: 1, 2

Verdict: ACCEPTED

input
8

correct output
2 3 1 2 3 3 2 1 

user output
3 3 1 3 2 3 2 1 

Test 7

Group: 1, 2

Verdict:

input
9

correct output
1 2 3 1 2 3 3 2 1 

user output
3 3 1 3 2 3 2 1 

Test 8

Group: 1, 2

Verdict:

input
10

correct output
IMPOSSIBLE

user output
3 3 1 3 2 3 2 1 

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
3 3 1 3 2 3 2 1 

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
3 3 1 3 2 3 2 1 

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
3 3 1 3 2 3 2 1 

Test 12

Group: 2

Verdict:

input
97

correct output
IMPOSSIBLE

user output
3 3 1 3 2 3 2 1 

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
3 3 1 3 2 3 2 1 

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
3 3 1 3 2 3 2 1 

Test 15

Group: 2

Verdict:

input
100

correct output
IMPOSSIBLE

user output
3 3 1 3 2 3 2 1