CSES - Datatähti 2017 alku - Results
Submission details
Task:Kolikot
Sender:mika
Submission time:2016-10-03 20:43:37 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.74 s1details
#2ACCEPTED0.70 s1details
#30.74 s1details
#4ACCEPTED0.74 s1details
#50.74 s1details
#6--2details
#7--2details
#8--2details
#9--2details
#10--2details
#110.31 s3details
#120.31 s3details
#130.35 s3details
#140.33 s3details
#150.34 s3details
#160.34 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:54:17: warning: ignoring return value of 'int system(const char*)', declared with attribute warn_unused_result [-Wunused-result]
  system("PAUSE");
                 ^

Code

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>

using namespace std;

vector<int> mahdolliset;

void x(int num, vector<int> numerot)
{
	for (size_t i = 0; i < numerot.size(); i++)
	{
		int luku = num + numerot[i];
		mahdolliset.push_back(luku);
		vector<int> b = numerot;
		b.erase(b.begin() + (find(b.begin(), b.end(), numerot[i]) - b.begin()));
		if (b.size() > 1)
			x(luku, b);
	}
}

int main()
{
	int count;
	cin >> count;

	vector<int> kolikot;
	while (count > 0)
	{
		int num;
		cin >> num;
		kolikot.push_back(num);
		mahdolliset.push_back(num);
		count--;
	}

	x(0, kolikot);

	std::sort(mahdolliset.begin(), mahdolliset.end());

	/*for (auto i = mahdolliset.begin(); i != mahdolliset.end(); ++i)
		std::cout << *i << ' ';
	cout << endl;*/

	int pienin = mahdolliset[mahdolliset.size() - 1] + 1;
	for (size_t i = mahdolliset[mahdolliset.size() - 1] + 1; i > 0; i--)
	{
		if (!(find(mahdolliset.begin(), mahdolliset.end(), i) != mahdolliset.end()))
			pienin = i;
	}

	cout << pienin << endl;
	system("PAUSE");
	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
29

Error:
sh: 1: PAUSE: not found

Test 2

Group: 1

Verdict: ACCEPTED

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

correct output
1

user output
1

Error:
sh: 1: PAUSE: not found

Test 3

Group: 1

Verdict:

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

correct output
62

user output
61

Error:
sh: 1: PAUSE: not found

Test 4

Group: 1

Verdict: ACCEPTED

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

correct output
1

user output
1

Error:
sh: 1: PAUSE: not found

Test 5

Group: 1

Verdict:

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

correct output
51

user output
50

Error:
sh: 1: PAUSE: not found

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
(empty)

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)