Task: | Taulukko |
Sender: | N00B.exe |
Submission time: | 2018-10-10 14:06:30 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
#4 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.02 s | 1 | details |
#2 | WRONG ANSWER | 0.01 s | 1 | details |
#3 | WRONG ANSWER | 0.01 s | 1 | details |
#4 | WRONG ANSWER | 0.01 s | 1 | details |
#5 | WRONG ANSWER | 0.01 s | 1 | details |
#6 | WRONG ANSWER | 0.02 s | 1 | details |
#7 | WRONG ANSWER | 0.01 s | 1 | details |
#8 | WRONG ANSWER | 0.02 s | 1 | details |
#9 | WRONG ANSWER | 0.02 s | 1 | details |
#10 | WRONG ANSWER | 0.02 s | 1 | details |
#11 | WRONG ANSWER | 0.01 s | 1 | details |
#12 | WRONG ANSWER | 0.02 s | 1 | details |
#13 | WRONG ANSWER | 0.02 s | 1 | details |
#14 | WRONG ANSWER | 0.01 s | 1 | details |
#15 | WRONG ANSWER | 0.04 s | 2 | details |
#16 | WRONG ANSWER | 0.07 s | 2 | details |
#17 | ACCEPTED | 0.06 s | 2 | details |
#18 | WRONG ANSWER | 0.05 s | 2 | details |
#19 | WRONG ANSWER | 0.05 s | 2 | details |
#20 | WRONG ANSWER | 0.05 s | 2 | details |
#21 | ACCEPTED | 0.06 s | 2 | details |
#22 | WRONG ANSWER | 0.05 s | 2 | details |
#23 | WRONG ANSWER | 0.05 s | 2 | details |
#24 | WRONG ANSWER | 0.05 s | 2 | details |
#25 | WRONG ANSWER | 0.02 s | 2 | details |
#26 | WRONG ANSWER | 0.02 s | 2 | details |
#27 | WRONG ANSWER | 0.02 s | 2 | details |
#28 | WRONG ANSWER | 0.02 s | 2 | details |
#29 | TIME LIMIT EXCEEDED | -- | 3 | details |
#30 | TIME LIMIT EXCEEDED | -- | 3 | details |
#31 | TIME LIMIT EXCEEDED | -- | 3 | details |
#32 | TIME LIMIT EXCEEDED | -- | 3 | details |
#33 | TIME LIMIT EXCEEDED | -- | 3 | details |
#34 | TIME LIMIT EXCEEDED | -- | 3 | details |
#35 | TIME LIMIT EXCEEDED | -- | 3 | details |
#36 | TIME LIMIT EXCEEDED | -- | 3 | details |
#37 | TIME LIMIT EXCEEDED | -- | 4 | details |
#38 | TIME LIMIT EXCEEDED | -- | 4 | details |
#39 | TIME LIMIT EXCEEDED | -- | 4 | details |
#40 | TIME LIMIT EXCEEDED | -- | 4 | details |
#41 | TIME LIMIT EXCEEDED | -- | 4 | details |
#42 | TIME LIMIT EXCEEDED | -- | 4 | details |
#43 | TIME LIMIT EXCEEDED | -- | 4 | details |
#44 | TIME LIMIT EXCEEDED | -- | 4 | details |
#45 | TIME LIMIT EXCEEDED | -- | 4 | details |
#46 | TIME LIMIT EXCEEDED | -- | 4 | details |
#47 | TIME LIMIT EXCEEDED | -- | 4 | details |
#48 | TIME LIMIT EXCEEDED | -- | 4 | details |
#49 | WRONG ANSWER | 0.05 s | 4 | details |
#50 | WRONG ANSWER | 0.10 s | 4 | details |
#51 | WRONG ANSWER | 0.06 s | 4 | details |
#52 | WRONG ANSWER | 0.10 s | 4 | details |
Compiler report
input/code.cpp: In function 'int main()': input/code.cpp:47:35: warning: format '%d' expects argument of type 'int', but argument 2 has type 'double' [-Wformat=] printf("%d", (n*((n + 1.0) / 2))); ~~~~~~~~~~~~~~~~~~~^ input/code.cpp:82:18: warning: variable 'shrinkIndex' set but not used [-Wunused-but-set-variable] int growIndex, shrinkIndex, a, b; ^~~~~~~~~~~ input/code.cpp:32:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result] scanf("%d %d", &n, &k); ~~~~~^~~~~~~~~~~~~~~~~
Code
#include <iostream>#define HASHSIZE 5000000using namespace std;int Included(int number, int* list, int count) {int index = -1;for(int i = 0; i < count; i++){if(number == *(list + i)){index = i;break;}}return index;}unsigned int hash(unsigned int x) {x = ((x >> 16) ^ x) * 0x45d9f3b;x = ((x >> 16) ^ x) * 0x45d9f3b;x = (x >> 16) ^ x;return x;}int main() {ios_base::sync_with_stdio(0);cin.tie(0);int n, k, ans = 0;scanf("%d %d", &n, &k);int* numbers = (int*)malloc(4 * n);for(int i = 0; i < n; i++){cin >> *(numbers + i);//scanf("%d", (numbers + i));}if (k == 0){ printf("0"); return 0; }if(k >= n){printf("%d", (n*((n + 1.0) / 2)));return 0;}//int* hashtable = (int*)malloc(HASHSIZE);int* dNumbers = (int*)malloc(4 * n);int* dNumberAmounts = (int*)malloc(4 * n);int dNumberCount = k+1;/*for(int i = 0; i < n; i++){if(-1 == Included(*(numbers + i), dNumbers, dNumberCount)){*(dNumbers + dNumberCount) = *(numbers + i);*(dNumberAmounts + dNumberCount) = 1;dNumberCount++;}else {*(dNumberAmounts + Included(*(numbers + i), dNumbers, dNumberCount)) += 1;}}*/if(dNumberCount <= k){ ans = n*((n+1.0) / 2); }else{int start = 0;int end = n - 1;bool goRight = false;int growIndex, shrinkIndex, a, b;int* p;int* p2;int currentDNumbers = dNumberCount;while (end - start > (k-1)){growIndex = (goRight) ? end + 1 : start - 1;if (growIndex > n - 1){if(end - start == k){ break; }//p = dNumberAmounts + Included(*(numbers + start), dNumbers, dNumberCount);p = dNumberAmounts;*p -= 1;if (*p == 0){currentDNumbers--;}if (currentDNumbers <= k){ans++;}start++;goRight = !goRight;}else if (growIndex < 0){if (end - start == k){ break; }//p = dNumberAmounts + Included(*(numbers + end), dNumbers, dNumberCount);p = dNumberAmounts;*p -= 1;if (*p == 0){currentDNumbers--;}if (currentDNumbers <= k){ans++;}end--;goRight = !goRight;}else{shrinkIndex = (goRight) ? start : end;//p = dNumberAmounts + Included(*(numbers + shrinkIndex), dNumbers, dNumberCount);//p2 = dNumberAmounts + Included(*(numbers + growIndex), dNumbers, dNumberCount);p = dNumberAmounts;p2 = dNumberAmounts;a = *p;b = *p2;*p -= 1;*p2 += 1;if (*p == 0 && *p != a){currentDNumbers--;}if (*p2 == 1 && *p2 != b){currentDNumbers++;}if (currentDNumbers <= k){ans++;}start += (goRight) ? 1 : -1;end += (goRight) ? 1 : -1;}}ans += ((2 * n + 1)*k - k * k) / 2;}printf("%d", ans);free(numbers);free(dNumbers);free(dNumberAmounts);return 0;}
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
5050 |
user output |
---|
100 |
Test 2
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 1 1 1 1 1 2 2 1 1 2 2 2 2 2 1 1 ... |
correct output |
---|
190 |
user output |
---|
100 |
Test 3
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 1 5 9 9 6 9 8 1 4 7 7 8 9 5 5 6 ... |
correct output |
---|
110 |
user output |
---|
100 |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
5050 |
user output |
---|
199 |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 2 2 1 2 1 2 2 1 1 2 1 1 2 1 2 1 ... |
correct output |
---|
5050 |
user output |
---|
199 |
Test 6
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 2 2 3 1 1 2 2 3 1 2 1 1 1 3 3 1 ... |
correct output |
---|
379 |
user output |
---|
199 |
Test 7
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 2 4 6 10 8 6 8 10 8 4 7 8 9 6 2 ... |
correct output |
---|
245 |
user output |
---|
199 |
Test 8
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
5050 |
user output |
---|
490 |
Test 9
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 5 4 4 2 2 4 3 3 2 3 4 3 5 3 1 5 ... |
correct output |
---|
5050 |
user output |
---|
490 |
Test 10
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 5 5 3 4 1 1 1 1 4 5 5 4 6 6 3 3 ... |
correct output |
---|
1488 |
user output |
---|
490 |
Test 11
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 5 10 1 1 9 1 6 9 4 3 10 9 2 4 2 ... |
correct output |
---|
743 |
user output |
---|
490 |
Test 12
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
5050 |
user output |
---|
955 |
Test 13
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 10 9 4 9 1 9 1 5 2 10 10 9 3 9 6 ... |
correct output |
---|
5050 |
user output |
---|
955 |
Test 14
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 10 80 59 58 87 28 83 83 93 96 24 ... |
correct output |
---|
994 |
user output |
---|
955 |
Test 15
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
12502500 |
user output |
---|
5000 |
Test 16
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 1 2 2 2 1 2 1 1 1 2 2 1 2 1 1 1 ... |
correct output |
---|
10148 |
user output |
---|
5000 |
Test 17
Group: 2
Verdict: ACCEPTED
input |
---|
5000 1 434568 634119 102509 107238 72... |
correct output |
---|
5000 |
user output |
---|
5000 |
Test 18
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
12502500 |
user output |
---|
9999 |
Test 19
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 2 2 1 1 1 2 2 2 2 1 1 1 1 2 1 2 ... |
correct output |
---|
12502500 |
user output |
---|
9999 |
Test 20
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 2 1 3 2 2 3 3 1 2 1 2 1 2 3 1 2 ... |
correct output |
---|
22451 |
user output |
---|
9999 |
Test 21
Group: 2
Verdict: ACCEPTED
input |
---|
5000 2 132968 414421 468358 432744 43... |
correct output |
---|
9999 |
user output |
---|
9999 |
Test 22
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 100 93 76 87 71 93 74 69 35 92 96 ... |
correct output |
---|
12502500 |
user output |
---|
495050 |
Test 23
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 100 2 57 51 4 35 76 5 40 51 55 20 ... |
correct output |
---|
2669737 |
user output |
---|
495050 |
Test 24
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 100 657 823 1773 1801 2785 4107 25... |
correct output |
---|
498978 |
user output |
---|
495050 |
Test 25
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 4999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
12502500 |
user output |
---|
12502499 |
Test 26
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 4999 865706 910619 695192 183574 92... |
correct output |
---|
12502500 |
user output |
---|
12502499 |
Test 27
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 5000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
12502500 |
user output |
---|
5000 |
Test 28
Group: 2
Verdict: WRONG ANSWER
input |
---|
5000 5000 774752 159472 183796 654476 69... |
correct output |
---|
12502500 |
user output |
---|
5000 |
Test 29
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 30
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 1 28107328 613212742 298033960 7... |
correct output |
---|
500000 |
user output |
---|
(empty) |
Test 31
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 32
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 1 2 1 1 2 2 1 2 1 2 1 1 2 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 33
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 3 2 2 3 2 2 2 1 1 2 2 3 2 3 2 ... |
correct output |
---|
2245355 |
user output |
---|
(empty) |
Test 34
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 1 1 2 2 2 1 1 2 1 1 2 1 2 1 ... |
correct output |
---|
1570486882 |
user output |
---|
(empty) |
Test 35
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 318961563 84011941 882177798 1... |
correct output |
---|
999999 |
user output |
---|
(empty) |
Test 36
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 1 2 1 2 1 2 1 2 2 2 2 1 2 1 ... |
correct output |
---|
483793169 |
user output |
---|
(empty) |
Test 37
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 38
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 1 709486749 350496125 796065873 ... |
correct output |
---|
500000 |
user output |
---|
(empty) |
Test 39
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 40
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 1 2 2 2 2 2 1 1 2 2 2 2 2 2 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 41
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 3 3 3 3 2 1 3 2 1 3 1 2 1 1 1 ... |
correct output |
---|
2255047 |
user output |
---|
(empty) |
Test 42
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 2 414942284 362802746 108881396 ... |
correct output |
---|
999999 |
user output |
---|
(empty) |
Test 43
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 100 59 14 100 74 49 43 91 84 31 16... |
correct output |
---|
260458849 |
user output |
---|
(empty) |
Test 44
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 1000 505 511 86 321 780 495 106 330... |
correct output |
---|
3694803834 |
user output |
---|
(empty) |
Test 45
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 10000 4956 8463 8582 980 9278 1747 2... |
correct output |
---|
41655235436 |
user output |
---|
(empty) |
Test 46
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 100000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 47
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 100000 40198 78364 3724 51802 378 130... |
correct output |
---|
125000250000 |
user output |
---|
(empty) |
Test 48
Group: 4
Verdict: TIME LIMIT EXCEEDED
input |
---|
500000 100000 320513086 811766509 339605137 ... |
correct output |
---|
45001856854 |
user output |
---|
(empty) |
Test 49
Group: 4
Verdict: WRONG ANSWER
input |
---|
500000 499999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
446198415 |
Test 50
Group: 4
Verdict: WRONG ANSWER
input |
---|
500000 499999 995132060 587162982 59723733 8... |
correct output |
---|
125000250000 |
user output |
---|
446198415 |
Test 51
Group: 4
Verdict: WRONG ANSWER
input |
---|
500000 500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
correct output |
---|
125000250000 |
user output |
---|
500000 |
Test 52
Group: 4
Verdict: WRONG ANSWER
input |
---|
500000 500000 72083718 753463162 730560260 6... |
correct output |
---|
125000250000 |
user output |
---|
500000 |