-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext-round.cpp
84 lines (69 loc) · 1.09 KB
/
next-round.cpp
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// https://codeforces.com/problemset/problem/158/A
#include <bits/stdc++.h>
using namespace std;
// USING EXTRA SPACE
int main()
{
int n = 0;
int k = 0;
cin >> n >> k;
int *scores = new int[n];
int tempScore = 0;
for (int i = 0; i < n; i++)
{
cin >> tempScore;
scores[i] = tempScore;
}
int minScoreToAdvance = scores[k - 1];
for (int i = 0; i < n; i++)
{
if (scores[i] < minScoreToAdvance || scores[i] == 0)
{
cout << i << endl;
break;
}
else if (i == n - 1)
{
cout << (i + 1) << endl;
break;
}
}
return 0;
}
// WITHOUT USING EXTRA SPACE
int main()
{
int n = 0;
int k = 0;
cin >> n >> k;
int minScoreToAdvance = 0;
int score = 0;
for (int i = 0; i < n; i++)
{
cin >> score;
if ((i == 0) && (score == 0))
{
cout << score << endl;
break;
}
else if ((i < k) && (score == 0))
{
cout << i << endl;
break;
}
else if ((i < k) && (score != 0))
{
minScoreToAdvance = score;
}
if ((i >= k) && (score < minScoreToAdvance))
{
cout << i << endl;
break;
}
else if (i == n - 1)
{
cout << n << endl;
}
}
return 0;
}