-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlackFriday.cpp
56 lines (51 loc) · 1.03 KB
/
BlackFriday.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
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define FOR(i,a,b) for(int i = a;i<b;i++)
#define INF (unsigned)!((int)0)
#define mp make_pair
#define pb push_back
#define ff first
#define ss second
#define lb lower_bound
#define ub upper_bound
#define endl "\n"
const int NIL = -1; typedef pair<int, int> pii; typedef pair<ll, ll> pl;
typedef vector<int> vi; typedef vector<ll> vl; typedef vector<pii> vpii;
typedef vector<pl> vpl; typedef vector<vi> vvi; typedef vector<vl> vvl;
// kattis <blackfriday> question
void solve(){
}
int main () {
ios_base::sync_with_stdio(0);cin.tie(0);
int n; cin>>n;
int ans = -1 ;
int ind = -1;
int a[n];
for(int i =0; i<n;++i){
cin>>a[i];
}
bool sol; int temp;
for(int i =0 ;i<n;i++){
sol = true;
temp = a[i];
a[i] = 103;
for(int j = 0;j<n;++j){
if(temp == a[j]){
sol = false;
continue;
}
}
a[i] = temp;
if(sol){
if(a[i] > ans){
ans = a[i];
ind = i+1;
}
}
}
if(ans != -1)cout<<ind;
else cout<<"none";
return 0;
}