#include <bits/stdc++.h> using namespace std; map<int, int> mp1, mp2; int main(){ ios_base::sync_with_stdio(0); cin.tie(nullptr); cout.tie(nullptr); int n; cin>>n; for(int i = 0; i < n; i++){ int a, b, c; cin>>a>>b>>c; int r = b-c; if(a==1){ mp1[r]++; }else mp2[r]++; } int wyn = 0; for(auto it:mp1){ if(mp2[it.first]<=it.second){ wyn+=mp2[it.first]; mp2[it.first]= 0; } } for(auto it:mp2){ if(mp1[it.first]<=it.second){ wyn+=mp1[it.first]; } } cout<<wyn; return 0; }
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 | #include <bits/stdc++.h> using namespace std; map<int, int> mp1, mp2; int main(){ ios_base::sync_with_stdio(0); cin.tie(nullptr); cout.tie(nullptr); int n; cin>>n; for(int i = 0; i < n; i++){ int a, b, c; cin>>a>>b>>c; int r = b-c; if(a==1){ mp1[r]++; }else mp2[r]++; } int wyn = 0; for(auto it:mp1){ if(mp2[it.first]<=it.second){ wyn+=mp2[it.first]; mp2[it.first]= 0; } } for(auto it:mp2){ if(mp1[it.first]<=it.second){ wyn+=mp1[it.first]; } } cout<<wyn; return 0; } |