-
Notifications
You must be signed in to change notification settings - Fork 165
Expand file tree
/
Copy pathcountdown kickstart 2019 (C).cpp
More file actions
51 lines (40 loc) 路 944 Bytes
/
Copy pathcountdown kickstart 2019 (C).cpp
File metadata and controls
51 lines (40 loc) 路 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include<iostream>
using namespace std;
#define ll long long
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll int t;
cin>>t;
ll int x=1;
while(t>0){
ll int count=0;
ll int n;
cin>>n;
ll int k;
cin>>k;
ll int arr[n];
for(ll int i=0;i<n;i++){
cin>>arr[i];
}
for(ll int i=0;i<n-k+1;i++){
if(arr[i]==k){
ll int p=k;
ll int h=1;
for(ll int j=i+1;j<i+k;j++){
p--;
if(arr[j]==p){
h++;
}
}
if(h==k){
count++;
}
}
}
cout<<"Case #"<<x<<": "<<count<<endl;
x++;
t--;
}
return 0;
}