| Task: | Bittijono |
| Sender: | mika |
| Submission time: | 2017-10-11 11:14:32 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 22 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 7 |
| #2 | ACCEPTED | 15 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.05 s | 1 | details |
| #2 | ACCEPTED | 0.06 s | 1 | details |
| #3 | ACCEPTED | 0.07 s | 1 | details |
| #4 | ACCEPTED | 0.06 s | 1 | details |
| #5 | ACCEPTED | 0.06 s | 1 | details |
| #6 | ACCEPTED | 0.06 s | 1 | details |
| #7 | ACCEPTED | 0.05 s | 1 | details |
| #8 | ACCEPTED | 0.05 s | 1 | details |
| #9 | ACCEPTED | 0.06 s | 1 | details |
| #10 | ACCEPTED | 0.05 s | 1 | details |
| #11 | ACCEPTED | 0.06 s | 2 | details |
| #12 | ACCEPTED | 0.06 s | 2 | details |
| #13 | ACCEPTED | 0.05 s | 2 | details |
| #14 | ACCEPTED | 0.08 s | 2 | details |
| #15 | ACCEPTED | 0.06 s | 2 | details |
| #16 | ACCEPTED | 0.05 s | 2 | details |
| #17 | ACCEPTED | 0.05 s | 2 | details |
| #18 | ACCEPTED | 0.06 s | 2 | details |
| #19 | ACCEPTED | 0.06 s | 2 | details |
| #20 | ACCEPTED | 0.06 s | 2 | details |
| #21 | WRONG ANSWER | 0.05 s | 3 | details |
| #22 | WRONG ANSWER | 0.05 s | 3 | details |
| #23 | WRONG ANSWER | 0.07 s | 3 | details |
| #24 | WRONG ANSWER | 0.06 s | 3 | details |
| #25 | WRONG ANSWER | 0.05 s | 3 | details |
| #26 | WRONG ANSWER | 0.07 s | 3 | details |
| #27 | WRONG ANSWER | 0.06 s | 3 | details |
| #28 | WRONG ANSWER | 0.07 s | 3 | details |
| #29 | WRONG ANSWER | 0.06 s | 3 | details |
| #30 | WRONG ANSWER | 0.07 s | 3 | details |
| #31 | WRONG ANSWER | 0.06 s | 4 | details |
| #32 | WRONG ANSWER | 0.08 s | 4 | details |
| #33 | WRONG ANSWER | 0.05 s | 4 | details |
| #34 | WRONG ANSWER | 0.05 s | 4 | details |
| #35 | WRONG ANSWER | 0.04 s | 4 | details |
| #36 | WRONG ANSWER | 0.07 s | 4 | details |
| #37 | WRONG ANSWER | 0.03 s | 4 | details |
| #38 | WRONG ANSWER | 0.05 s | 4 | details |
| #39 | WRONG ANSWER | 0.06 s | 4 | details |
| #40 | WRONG ANSWER | 0.08 s | 4 | details |
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: WRONG ANSWER
| input |
|---|
| 1666 |
| correct output |
|---|
| 101101100100101 |
| user output |
|---|
calculated in 0.000832 |
Error:
sh: 1: pause: not found
Test 22
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 897 |
| correct output |
|---|
| 11101001101010 |
| user output |
|---|
calculated in 0.000908 |
Error:
sh: 1: pause: not found
Test 23
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4466 |
| correct output |
|---|
| 111101010110100101 |
| user output |
|---|
calculated in 0.000842 |
Error:
sh: 1: pause: not found
Test 24
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4240 |
| correct output |
|---|
| 11011001011010101 |
| user output |
|---|
calculated in 0.000883 |
Error:
sh: 1: pause: not found
Test 25
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 3089 |
| correct output |
|---|
| 1011001010100101 |
| user output |
|---|
calculated in 0.000839 |
Error:
sh: 1: pause: not found
Test 26
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4697 |
| correct output |
|---|
| 11010101101010110 |
| user output |
|---|
calculated in 0.001166 |
Error:
sh: 1: pause: not found
Test 27
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4608 |
| correct output |
|---|
| 11010110101001010 |
| user output |
|---|
calculated in 0.00085 |
Error:
sh: 1: pause: not found
Test 28
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4625 |
| correct output |
|---|
| 111011001100101001 |
| user output |
|---|
calculated in 0.001026 |
Error:
sh: 1: pause: not found
Test 29
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4611 |
| correct output |
|---|
| 11010101010101100 |
| user output |
|---|
calculated in 0.000859 |
Error:
sh: 1: pause: not found
Test 30
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 4917 |
| correct output |
|---|
| 10110100101010110 |
| user output |
|---|
calculated in 0.001214 |
Error:
sh: 1: pause: not found
Test 31
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 178555 |
| correct output |
|---|
| 1011010110110101010110110 |
| user output |
|---|
calculated in 0.000827 |
Error:
sh: 1: pause: not found
Test 32
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 864856 |
| correct output |
|---|
| 10111010110110100100101010010 |
| user output |
|---|
calculated in 0.001603 |
Error:
sh: 1: pause: not found
Test 33
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 112146 |
| correct output |
|---|
| 1101110101011001100100110 |
| user output |
|---|
calculated in 0.001324 |
Error:
sh: 1: pause: not found
Test 34
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 741124 |
| correct output |
|---|
| 1011010011010101100101011010 |
| user output |
|---|
calculated in 0.000858 |
Error:
sh: 1: pause: not found
Test 35
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 511902 |
| correct output |
|---|
| 1011010100011010100101001110 |
| user output |
|---|
calculated in 0.000861 |
Error:
sh: 1: pause: not found
Test 36
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 920019 |
| correct output |
|---|
| 11100100101101010101001101010 |
| user output |
|---|
calculated in 0.001159 |
Error:
sh: 1: pause: not found
Test 37
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 933943 |
| correct output |
|---|
| 10101011010100100110100111001 |
| user output |
|---|
calculated in 0.00086 |
Error:
sh: 1: pause: not found
Test 38
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 973410 |
| correct output |
|---|
| 1011010101011010101010101001 |
| user output |
|---|
calculated in 0.00098 |
Error:
sh: 1: pause: not found
Test 39
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 954943 |
| correct output |
|---|
| 10110110010011010100100110101 |
| user output |
|---|
calculated in 0.001042 |
Error:
sh: 1: pause: not found
Test 40
Group: 4
Verdict: WRONG ANSWER
| input |
|---|
| 911674 |
| correct output |
|---|
| 1010110010110101010101010110 |
| user output |
|---|
calculated in 0.001344 |
Error:
sh: 1: pause: not found
