#include <iostream> using namespace std; int tab[2][2000000]; int main () { ios_base::sync_with_stdio(false); cin.tie(0); int n, r, w, t, x=0; cin>>n; for(int i=0; i<n; i++) { cin>>r>>w>>t; tab[r-1][w-t+999999]++; } for(int i=0; i<2000000; i++) { if(tab[0][i]>tab[1][i]) { x+=tab[1][i]; } else { x+=tab[0][i]; } } cout<<x; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #include <iostream> using namespace std; int tab[2][2000000]; int main () { ios_base::sync_with_stdio(false); cin.tie(0); int n, r, w, t, x=0; cin>>n; for(int i=0; i<n; i++) { cin>>r>>w>>t; tab[r-1][w-t+999999]++; } for(int i=0; i<2000000; i++) { if(tab[0][i]>tab[1][i]) { x+=tab[1][i]; } else { x+=tab[0][i]; } } cout<<x; } |