CSES - Datatähti 2017 alku - Results
Submission details
Task:Kolikot
Sender:vuolen
Submission time:2016-10-14 21:24:16 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#20.05 s1details
#30.06 s1details
#40.06 s1details
#50.07 s1details
#6--2details
#70.21 s2details
#8--2details
#9--2details
#10--2details
#11--3details
#12--3details
#13--3details
#14--3details
#15--3details
#16--3details

Code

#include <bits/stdc++.h>

using namespace std;

#define u8 uint8_t
#define u32 uint32_t
#define u64 uint64_t

uint32_t n = 0;

#define INDEX(s, d) (s * n + d)

bool get_bit(unordered_set<u64> m, u64 s, u32 d) {
	return (s < 0 && d < 0) ? 0 : m.count(INDEX(s, d));
}

int main(int argc, char *argv[]) {
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	vector<u64> in;
	u64 max_sum = 0;
	unordered_set<u64> m;

	cin >> n;

	for (u32 i = 0; i < n; i++) {
		u64 t;
		cin >> t;
		in.push_back(t);
		max_sum += t;
		m.insert(i);
	}

	m.insert(INDEX(in.front(), 0));

 	for (u64 i = 1; i <= max_sum + 2; i++) {
 		for (u32 j = 1; j < n; j++) {
 			bool t = get_bit(m, i, j - 1) || get_bit(m, i - in[j], j - 1);
 			if (t) {
 				for (u32 k = j; k < n; k++) {
					m.insert(INDEX(i, k));
 				}
 				break;
 			}
 		}

 		if (!get_bit(m, i, n - 1)) {
 			cout << i << endl;
 			break;
 		}
 	}

 	for (u32 j = 0; j < n; j++) {
 		printf("%" PRIu64 " ", in[j]);
 		for (u64 i = 0; i <= max_sum + 2; i++) {
 			printf("%d ", get_bit(m, i, j));
 		}
 		printf("\n");
 	}

	return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
10
5 3 1 4 5 1 3 2 2 3

correct output
30

user output
30
5 1 0 0 0 0 1 0 0 0 0 0 0 0 0 ...

Test 2

Group: 1

Verdict:

input
10
3 5 5 4 5 4 5 5 5 3

correct output
1

user output
1
3 1 0 0 1 0 0 0 0 0 0 0 0 0 0 ...

Test 3

Group: 1

Verdict:

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

correct output
62

user output
62
10 1 0 0 0 0 0 0 0 0 0 1 0 0 0...

Test 4

Group: 1

Verdict:

input
10
7 4 6 3 9 7 4 4 7 7

correct output
1

user output
1
7 1 0 0 0 0 0 0 1 0 0 0 0 0 0 ...

Test 5

Group: 1

Verdict:

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

correct output
51

user output
51
8 1 0 0 0 0 0 0 0 1 0 0 0 0 0 ...

Test 6

Group: 2

Verdict:

input
100
3 3 1 4 2 1 2 1 3 1 2 5 1 5 1 ...

correct output
269

user output
(empty)

Test 7

Group: 2

Verdict:

input
100
3 3 2 3 4 5 4 4 4 4 2 2 4 4 4 ...

correct output
1

user output
1
3 1 0 0 1 0 0 0 0 0 0 0 0 0 0 ...

Test 8

Group: 2

Verdict:

input
100
678 999 374 759 437 390 832 54...

correct output
1

user output
(empty)

Test 9

Group: 2

Verdict:

input
100
862 537 633 807 666 248 237 5 ...

correct output
30

user output
(empty)

Test 10

Group: 2

Verdict:

input
100
874 302 384 920 76 28 762 163 ...

correct output
41765

user output
(empty)

Test 11

Group: 3

Verdict:

input
100000
4 2 5 3 2 3 5 2 2 2 3 4 3 3 2 ...

correct output
299640

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000
2 5 5 5 5 2 4 4 3 2 3 2 5 5 3 ...

correct output
1

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000
98146842 766872135 84108268 28...

correct output
1

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000
932032495 1 849176169 78948957...

correct output
29970

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
35894853 796619259 699878597 4...

correct output
44965249639582

user output
(empty)

Test 16

Group: 3

Verdict:

input
100000
930494676 960662779 904422858 ...

correct output
800020001

user output
(empty)