#include <bits/stdc++.h> using namespace std; int n, res; map <int, int> M[2]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n; for (int i = 0, r, w, t; i < n; i++) { cin >> r >> w >> t; M[r-1][w-t]++; } for (auto i: M[0]) if (M[1].count(i.first)) res += min(i.second, M[1][i.first]); cout << res << '\n'; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | #include <bits/stdc++.h> using namespace std; int n, res; map <int, int> M[2]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); cin >> n; for (int i = 0, r, w, t; i < n; i++) { cin >> r >> w >> t; M[r-1][w-t]++; } for (auto i: M[0]) if (M[1].count(i.first)) res += min(i.second, M[1][i.first]); cout << res << '\n'; } |