This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std ;
#define int long long
#define endl '\n'
#define all(a) a.begin() , a.end()
#define alr(a) a.rbegin() , a.rend()
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);cout.tie(0);
int q;
cin >> q;
int ans1 = 0, ans2 = 0;
map < int , int > last;
for(int i = 1 ; i <= 8 ; i++) last[i] = -10;
while(q--) {
int t, x, y;
cin >> t >> x >> y;
if(x < y) {
int before = last[x];
if(t - before <= 10) {
ans1 += 150;
} else {
ans1 += 100;
}
last[x] = t;
} else {
int before = last[x];
if(t - before <= 10) {
ans2 += 150;
} else {
ans2 += 100;
}
last[x] = t;
}
}
cout << ans1 << " " << ans2 << endl;
return 0 ;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |