-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path60.cpp
More file actions
55 lines (53 loc) · 750 Bytes
/
60.cpp
File metadata and controls
55 lines (53 loc) · 750 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
52
53
54
55
#include<bits/stdc++.h>
using namespace std;
typedef long long int lli;
typedef long int li;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin.tie(NULL);
#ifndef ONLINE_JUDGE
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
#endif
int n,k;
cin>>n>>k;
std::vector<int> v(n);
for (int i = 0; i < n; i++)
{
cin>>v[i];
}
int max = 0;
if(k<n)
{
for (int i = 0; i < k-1; i++)
{
if(max<v[i])
max = v[i];
}
}
else
{
int index;
for (int i = 0; i < n; i++)
{
if(max<v[i])
{
max = v[i];
index = i;
}
if(index==n-1 && n==k)
{
for (int i = 0; i < n-2; ++i)
{
if(max<v[i])
{
max = v[i];
}
}
}
}
}
cout<<max;
}