| Task: | Taulukko | 
| Sender: | nko | 
| Submission time: | 2018-10-07 00:49:25 +0300 | 
| Language: | C++ | 
| Status: | READY | 
| Result: | 0 | 
| group | verdict | score | 
|---|---|---|
| #1 | RUNTIME ERROR | 0 | 
| #2 | RUNTIME ERROR | 0 | 
| #3 | RUNTIME ERROR | 0 | 
| #4 | RUNTIME ERROR | 0 | 
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.26 s | 1 | details | 
| #2 | RUNTIME ERROR | 0.28 s | 1 | details | 
| #3 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #4 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #5 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #6 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #7 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #8 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #9 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #10 | RUNTIME ERROR | 0.26 s | 1 | details | 
| #11 | RUNTIME ERROR | 0.26 s | 1 | details | 
| #12 | RUNTIME ERROR | 0.28 s | 1 | details | 
| #13 | RUNTIME ERROR | 0.26 s | 1 | details | 
| #14 | RUNTIME ERROR | 0.27 s | 1 | details | 
| #15 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #16 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #17 | RUNTIME ERROR | 0.28 s | 2 | details | 
| #18 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #19 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #20 | RUNTIME ERROR | 0.26 s | 2 | details | 
| #21 | RUNTIME ERROR | 0.28 s | 2 | details | 
| #22 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #23 | RUNTIME ERROR | 0.28 s | 2 | details | 
| #24 | RUNTIME ERROR | 0.26 s | 2 | details | 
| #25 | RUNTIME ERROR | 0.26 s | 2 | details | 
| #26 | RUNTIME ERROR | 0.26 s | 2 | details | 
| #27 | RUNTIME ERROR | 0.27 s | 2 | details | 
| #28 | RUNTIME ERROR | 0.28 s | 2 | details | 
| #29 | RUNTIME ERROR | 0.34 s | 3 | details | 
| #30 | RUNTIME ERROR | 0.47 s | 3 | details | 
| #31 | RUNTIME ERROR | 0.34 s | 3 | details | 
| #32 | RUNTIME ERROR | 0.34 s | 3 | details | 
| #33 | RUNTIME ERROR | 0.35 s | 3 | details | 
| #34 | RUNTIME ERROR | 0.33 s | 3 | details | 
| #35 | RUNTIME ERROR | 0.47 s | 3 | details | 
| #36 | RUNTIME ERROR | 0.34 s | 3 | details | 
| #37 | RUNTIME ERROR | 0.34 s | 4 | details | 
| #38 | RUNTIME ERROR | 0.46 s | 4 | details | 
| #39 | RUNTIME ERROR | 0.33 s | 4 | details | 
| #40 | RUNTIME ERROR | 0.35 s | 4 | details | 
| #41 | RUNTIME ERROR | 0.33 s | 4 | details | 
| #42 | RUNTIME ERROR | 0.48 s | 4 | details | 
| #43 | RUNTIME ERROR | 0.36 s | 4 | details | 
| #44 | RUNTIME ERROR | 0.36 s | 4 | details | 
| #45 | RUNTIME ERROR | 0.39 s | 4 | details | 
| #46 | RUNTIME ERROR | 0.34 s | 4 | details | 
| #47 | RUNTIME ERROR | 0.39 s | 4 | details | 
| #48 | RUNTIME ERROR | 0.46 s | 4 | details | 
| #49 | RUNTIME ERROR | 0.34 s | 4 | details | 
| #50 | RUNTIME ERROR | 0.47 s | 4 | details | 
| #51 | RUNTIME ERROR | 0.35 s | 4 | details | 
| #52 | RUNTIME ERROR | 0.47 s | 4 | details | 
Compiler report
input/code.cpp: In function 'void insert(node**, int)':
input/code.cpp:22:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(;first->value != v && first->next != NULL ;first = first->next)
        ~~~~~~~~~~~~~^~~~
input/code.cpp:25:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   if(first->value == v){
      ~~~~~~~~~~~~~^~~~
input/code.cpp: In function 'node* find(node**, int)':
input/code.cpp:50:21: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(;first->value != v && first != NULL ;first = first->next)
        ~~~~~~~~~~~~~^~~~
input/code.cpp: In function 'int main()':
input/code.cpp:58:12: warning: unused variable 'b' [-Wunused-variable]
     int a, b, n, k, i;
            ^Code
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
struct node {
	
	unsigned int value;
	unsigned int amount;
	struct node *next;
};
void insert(struct node **list, int v){
	
	int index = v % 100000000;
	auto first = list[index];
	
	if(first){
	
		for(;first->value != v && first->next != NULL ;first = first->next)
			;
		
		if(first->value == v){
			first->amount++;
		} else {
			struct node *temp = (struct node*)malloc(sizeof(struct node));
			temp->value = v;
			temp->amount = 1;
			temp->next = NULL;
			first->next = temp;
		} 
	
	} else {
		struct node *temp = (struct node*)malloc(sizeof(struct node));
		temp->value = v;
		temp->amount = 1;
		temp->next = NULL;
		list[index] = temp;
	}
	
}
struct node* find(struct node **list,int v){
	int index = v % 100000000;
	auto first = list[index];
	if(first)
		for(;first->value != v && first != NULL ;first = first->next)
			;
	
	return first;
}
int main() {
    
    int a, b, n, k, i;
    vector<int> taulu;
    
    cin >> n >> k;
    
    for(i = 0; i < n; i++){
        cin >> a;
        taulu.push_back(a);
    }
    
    struct node **table = new struct node*[100000000]();
	struct node *t;
    auto left = taulu.begin();
    auto right = taulu.begin();
    a = n = i = 0;
       
	for(;right < taulu.end();right++){
		
		if((t = find(table,*right)) == NULL) {
			insert(table,*right);
			a++;
		} else { 
			if(t->amount == 0)
				a++;
			
			t->amount++;
		}
		
		
		if(a > k){
			while(a > k){
				
				t = find(table,*left);
				t->amount--;
				if(t->amount == 0){
					a--;
				}
				n--;
				i += n;
				left++;
			}
			i++;
			n++;
		} else {
			i++;
			n++;
		}
        
		if(right == taulu.end()-1){
			for(;left < taulu.end()-1;left++){
			 n--;
			 i += n;
		 }
		 break;
	 }
		
    }
    cout << i << endl;
    return 0;
}Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 2
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 1 1 1 1 1 2 2 1 1 2 2 2 2 2 1 1 ... | 
| correct output | 
|---|
| 190 | 
| user output | 
|---|
| (empty) | 
Test 3
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 1 5 9 9 6 9 8 1 4 7 7 8 9 5 5 6 ... | 
| correct output | 
|---|
| 110 | 
| user output | 
|---|
| (empty) | 
Test 4
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 5
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 2 2 1 2 1 2 2 1 1 2 1 1 2 1 2 1 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 6
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 2 2 3 1 1 2 2 3 1 2 1 1 1 3 3 1 ... | 
| correct output | 
|---|
| 379 | 
| user output | 
|---|
| (empty) | 
Test 7
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 2 4 6 10 8 6 8 10 8 4 7 8 9 6 2 ... | 
| correct output | 
|---|
| 245 | 
| user output | 
|---|
| (empty) | 
Test 8
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 9
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 5 4 4 2 2 4 3 3 2 3 4 3 5 3 1 5 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 10
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 5 5 3 4 1 1 1 1 4 5 5 4 6 6 3 3 ... | 
| correct output | 
|---|
| 1488 | 
| user output | 
|---|
| (empty) | 
Test 11
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 5 10 1 1 9 1 6 9 4 3 10 9 2 4 2 ... | 
| correct output | 
|---|
| 743 | 
| user output | 
|---|
| (empty) | 
Test 12
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 13
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 10 9 4 9 1 9 1 5 2 10 10 9 3 9 6 ... | 
| correct output | 
|---|
| 5050 | 
| user output | 
|---|
| (empty) | 
Test 14
Group: 1
Verdict: RUNTIME ERROR
| input | 
|---|
| 100 10 80 59 58 87 28 83 83 93 96 24 ... | 
| correct output | 
|---|
| 994 | 
| user output | 
|---|
| (empty) | 
Test 15
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 16
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 1 2 2 2 1 2 1 1 1 2 2 1 2 1 1 1 ... | 
| correct output | 
|---|
| 10148 | 
| user output | 
|---|
| (empty) | 
Test 17
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 1 434568 634119 102509 107238 72... | 
| correct output | 
|---|
| 5000 | 
| user output | 
|---|
| (empty) | 
Test 18
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 19
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 2 2 1 1 1 2 2 2 2 1 1 1 1 2 1 2 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 20
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 2 1 3 2 2 3 3 1 2 1 2 1 2 3 1 2 ... | 
| correct output | 
|---|
| 22451 | 
| user output | 
|---|
| (empty) | 
Test 21
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 2 132968 414421 468358 432744 43... | 
| correct output | 
|---|
| 9999 | 
| user output | 
|---|
| (empty) | 
Test 22
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 100 93 76 87 71 93 74 69 35 92 96 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 23
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 100 2 57 51 4 35 76 5 40 51 55 20 ... | 
| correct output | 
|---|
| 2669737 | 
| user output | 
|---|
| (empty) | 
Test 24
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 100 657 823 1773 1801 2785 4107 25... | 
| correct output | 
|---|
| 498978 | 
| user output | 
|---|
| (empty) | 
Test 25
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 4999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 26
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 4999 865706 910619 695192 183574 92... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 27
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 5000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 28
Group: 2
Verdict: RUNTIME ERROR
| input | 
|---|
| 5000 5000 774752 159472 183796 654476 69... | 
| correct output | 
|---|
| 12502500 | 
| user output | 
|---|
| (empty) | 
Test 29
Group: 3
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| input | 
|---|
| 500000 1 28107328 613212742 298033960 7... | 
| correct output | 
|---|
| 500000 | 
| user output | 
|---|
| (empty) | 
Test 31
Group: 3
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| input | 
|---|
| 500000 2 318961563 84011941 882177798 1... | 
| correct output | 
|---|
| 999999 | 
| user output | 
|---|
| (empty) | 
Test 36
Group: 3
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| input | 
|---|
| 500000 1 709486749 350496125 796065873 ... | 
| correct output | 
|---|
| 500000 | 
| user output | 
|---|
| (empty) | 
Test 39
Group: 4
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| 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: RUNTIME ERROR
| input | 
|---|
| 500000 2 414942284 362802746 108881396 ... | 
| correct output | 
|---|
| 999999 | 
| user output | 
|---|
| (empty) | 
Test 43
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 100 59 14 100 74 49 43 91 84 31 16... | 
| correct output | 
|---|
| 260458849 | 
| user output | 
|---|
| (empty) | 
Test 44
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 1000 505 511 86 321 780 495 106 330... | 
| correct output | 
|---|
| 3694803834 | 
| user output | 
|---|
| (empty) | 
Test 45
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 10000 4956 8463 8582 980 9278 1747 2... | 
| correct output | 
|---|
| 41655235436 | 
| user output | 
|---|
| (empty) | 
Test 46
Group: 4
Verdict: RUNTIME ERROR
| 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: RUNTIME ERROR
| input | 
|---|
| 500000 100000 40198 78364 3724 51802 378 130... | 
| correct output | 
|---|
| 125000250000 | 
| user output | 
|---|
| (empty) | 
Test 48
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 100000 320513086 811766509 339605137 ... | 
| correct output | 
|---|
| 45001856854 | 
| user output | 
|---|
| (empty) | 
Test 49
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 499999 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 125000250000 | 
| user output | 
|---|
| (empty) | 
Test 50
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 499999 995132060 587162982 59723733 8... | 
| correct output | 
|---|
| 125000250000 | 
| user output | 
|---|
| (empty) | 
Test 51
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 500000 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... | 
| correct output | 
|---|
| 125000250000 | 
| user output | 
|---|
| (empty) | 
Test 52
Group: 4
Verdict: RUNTIME ERROR
| input | 
|---|
| 500000 500000 72083718 753463162 730560260 6... | 
| correct output | 
|---|
| 125000250000 | 
| user output | 
|---|
| (empty) | 
