CSES - Datatähti 2018 alku - Results
Submission details
Task:Bittijono
Sender:mika
Submission time:2017-10-11 11:14:32 +0300
Language:C++
Status:READY
Result:22
Feedback
groupverdictscore
#1ACCEPTED7
#2ACCEPTED15
#30
#40
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.06 s1details
#3ACCEPTED0.07 s1details
#4ACCEPTED0.06 s1details
#5ACCEPTED0.06 s1details
#6ACCEPTED0.06 s1details
#7ACCEPTED0.05 s1details
#8ACCEPTED0.05 s1details
#9ACCEPTED0.06 s1details
#10ACCEPTED0.05 s1details
#11ACCEPTED0.06 s2details
#12ACCEPTED0.06 s2details
#13ACCEPTED0.05 s2details
#14ACCEPTED0.08 s2details
#15ACCEPTED0.06 s2details
#16ACCEPTED0.05 s2details
#17ACCEPTED0.05 s2details
#18ACCEPTED0.06 s2details
#19ACCEPTED0.06 s2details
#20ACCEPTED0.06 s2details
#210.05 s3details
#220.05 s3details
#230.07 s3details
#240.06 s3details
#250.05 s3details
#260.07 s3details
#270.06 s3details
#280.07 s3details
#290.06 s3details
#300.07 s3details
#310.06 s4details
#320.08 s4details
#330.05 s4details
#340.05 s4details
#350.04 s4details
#360.07 s4details
#370.03 s4details
#380.05 s4details
#390.06 s4details
#400.08 s4details

Compiler report

input/code.cpp: In function 'int alijonoc(std::string)':
input/code.cpp:15:32: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < s.length(); i++)
                                ^
input/code.cpp:18:19: warning: array subscript has type 'char' [-Wchar-subscripts]
    c = c - cc[s[i]] + ccc;
                   ^
input/code.cpp:19:11: warning: array subscript has type 'char' [-Wchar-subscripts]
    cc[s[i]] = ccc;
           ^
input/code.cpp: In function 'void strr(int, std::vector<std::basic_string<char> >&, std::string)':
input/code.cpp:32:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if (s.size() < max_length)
                  ^
input/code.cpp: In function 'int main()':
input/code.cpp:56:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for (int i = 0; i < vv.size(); i++)
                               ^
input/code.cpp:73:18: warning: i...

Code

#include <iostream>
#include <string>
#include <vector>
#include <ctime>

using namespace std;

/*namespace abcccc
{*/

	int alijonoc(string s)
	{
		int c = 0;
		int cc[256] = { 0 };
		for (int i = 0; i < s.length(); i++)
		{
			int ccc = 1 + c;
			c = c - cc[s[i]] + ccc;
			cc[s[i]] = ccc;
		}
		return c;
	}

	void strr(int n, vector<string> &v, string s = "")
	{
		int max_length = n; // n < 4
		if (n > 4)
			max_length = (n / 2) + 1;
		if (n > 19)
			max_length = 10;

		if (s.size() < max_length)
				{
			for (int i = 0; i < 2; i++)
			{
				string sn = s + to_string(i);
				v.push_back(sn);

				strr(n, v, sn);
			}
		}
	}
	// 5 = 100
	// 6 = 101

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

		clock_t begin = clock();

		vector<string> vv;
		strr(n, vv);
		string lowstr = "";
		for (int i = 0; i < vv.size(); i++)
		{
			int p = alijonoc(vv[i]);

			if (p == n)
			{
				if (lowstr == "" || lowstr.size() > vv[i].size())
					lowstr = vv[i];
			}
		}

		cout << lowstr << endl;

		clock_t end = clock();
		double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC;
		cout << "calculated in " << elapsed_secs << endl;

		system("pause");

		return 0;
	}
//}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
1

correct output
1

user output
0
calculated in 0.000135

Error:
sh: 1: pause: not found

Test 2

Group: 1

Verdict: ACCEPTED

input
2

correct output
11

user output
00
calculated in 0.000106

Error:
sh: 1: pause: not found

Test 3

Group: 1

Verdict: ACCEPTED

input
3

correct output
10

user output
01
calculated in 0.000119

Error:
sh: 1: pause: not found

Test 4

Group: 1

Verdict: ACCEPTED

input
4

correct output
1111

user output
0000
calculated in 8.8e-05

Error:
sh: 1: pause: not found

Test 5

Group: 1

Verdict: ACCEPTED

input
5

correct output
110

user output
001
calculated in 8.8e-05

Error:
sh: 1: pause: not found

Test 6

Group: 1

Verdict: ACCEPTED

input
6

correct output
101

user output
010
calculated in 0.000107

Error:
sh: 1: pause: not found

Test 7

Group: 1

Verdict: ACCEPTED

input
7

correct output
1110

user output
0001
calculated in 0.000103

Error:
sh: 1: pause: not found

Test 8

Group: 1

Verdict: ACCEPTED

input
8

correct output
1100

user output
0011
calculated in 0.000117

Error:
sh: 1: pause: not found

Test 9

Group: 1

Verdict: ACCEPTED

input
9

correct output
1101

user output
0010
calculated in 9.8e-05

Error:
sh: 1: pause: not found

Test 10

Group: 1

Verdict: ACCEPTED

input
10

correct output
1001

user output
0110
calculated in 0.000123

Error:
sh: 1: pause: not found

Test 11

Group: 2

Verdict: ACCEPTED

input
38

correct output
1101011

user output
0010100
calculated in 0.001014

Error:
sh: 1: pause: not found

Test 12

Group: 2

Verdict: ACCEPTED

input
13

correct output
11011

user output
00100
calculated in 0.000274

Error:
sh: 1: pause: not found

Test 13

Group: 2

Verdict: ACCEPTED

input
90

correct output
111001010

user output
000110101
calculated in 0.000941

Error:
sh: 1: pause: not found

Test 14

Group: 2

Verdict: ACCEPTED

input
25

correct output
110010

user output
001101
calculated in 0.001559

Error:
sh: 1: pause: not found

Test 15

Group: 2

Verdict: ACCEPTED

input
82

correct output
111001101

user output
000110010
calculated in 0.001139

Error:
sh: 1: pause: not found

Test 16

Group: 2

Verdict: ACCEPTED

input
94

correct output
1100011110

user output
0011100001
calculated in 0.001225

Error:
sh: 1: pause: not found

Test 17

Group: 2

Verdict: ACCEPTED

input
100

correct output
1111001001

user output
0000110110
calculated in 0.000909

Error:
sh: 1: pause: not found

Test 18

Group: 2

Verdict: ACCEPTED

input
99

correct output
110010010

user output
001101101
calculated in 0.000841

Error:
sh: 1: pause: not found

Test 19

Group: 2

Verdict: ACCEPTED

input
98

correct output
110110010

user output
001001101
calculated in 0.001367

Error:
sh: 1: pause: not found

Test 20

Group: 2

Verdict: ACCEPTED

input
92

correct output
100110001

user output
011001110
calculated in 0.001058

Error:
sh: 1: pause: not found

Test 21

Group: 3

Verdict:

input
1666

correct output
101101100100101

user output

calculated in 0.000832

Error:
sh: 1: pause: not found

Test 22

Group: 3

Verdict:

input
897

correct output
11101001101010

user output

calculated in 0.000908

Error:
sh: 1: pause: not found

Test 23

Group: 3

Verdict:

input
4466

correct output
111101010110100101

user output

calculated in 0.000842

Error:
sh: 1: pause: not found

Test 24

Group: 3

Verdict:

input
4240

correct output
11011001011010101

user output

calculated in 0.000883

Error:
sh: 1: pause: not found

Test 25

Group: 3

Verdict:

input
3089

correct output
1011001010100101

user output

calculated in 0.000839

Error:
sh: 1: pause: not found

Test 26

Group: 3

Verdict:

input
4697

correct output
11010101101010110

user output

calculated in 0.001166

Error:
sh: 1: pause: not found

Test 27

Group: 3

Verdict:

input
4608

correct output
11010110101001010

user output

calculated in 0.00085

Error:
sh: 1: pause: not found

Test 28

Group: 3

Verdict:

input
4625

correct output
111011001100101001

user output

calculated in 0.001026

Error:
sh: 1: pause: not found

Test 29

Group: 3

Verdict:

input
4611

correct output
11010101010101100

user output

calculated in 0.000859

Error:
sh: 1: pause: not found

Test 30

Group: 3

Verdict:

input
4917

correct output
10110100101010110

user output

calculated in 0.001214

Error:
sh: 1: pause: not found

Test 31

Group: 4

Verdict:

input
178555

correct output
1011010110110101010110110

user output

calculated in 0.000827

Error:
sh: 1: pause: not found

Test 32

Group: 4

Verdict:

input
864856

correct output
10111010110110100100101010010

user output

calculated in 0.001603

Error:
sh: 1: pause: not found

Test 33

Group: 4

Verdict:

input
112146

correct output
1101110101011001100100110

user output

calculated in 0.001324

Error:
sh: 1: pause: not found

Test 34

Group: 4

Verdict:

input
741124

correct output
1011010011010101100101011010

user output

calculated in 0.000858

Error:
sh: 1: pause: not found

Test 35

Group: 4

Verdict:

input
511902

correct output
1011010100011010100101001110

user output

calculated in 0.000861

Error:
sh: 1: pause: not found

Test 36

Group: 4

Verdict:

input
920019

correct output
11100100101101010101001101010

user output

calculated in 0.001159

Error:
sh: 1: pause: not found

Test 37

Group: 4

Verdict:

input
933943

correct output
10101011010100100110100111001

user output

calculated in 0.00086

Error:
sh: 1: pause: not found

Test 38

Group: 4

Verdict:

input
973410

correct output
1011010101011010101010101001

user output

calculated in 0.00098

Error:
sh: 1: pause: not found

Test 39

Group: 4

Verdict:

input
954943

correct output
10110110010011010100100110101

user output

calculated in 0.001042

Error:
sh: 1: pause: not found

Test 40

Group: 4

Verdict:

input
911674

correct output
1010110010110101010101010110

user output

calculated in 0.001344

Error:
sh: 1: pause: not found