#include <bits/stdc++.h> using namespace std; using ll = long long; const int N = 1e6 + 5; int used[N * 3][2]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, ans = 0; cin >> n; for(int i = 0; i < n; i++){ int r, w, t; cin >> r >> w >> t; used[N + w - t][r & 1]++; // cout << w - t << " "; } for(int i = 0; i < 3 * N; i++){ ans += min(used[i][0], used[i][1]); // cout << i << " - " << used[i][0] << " " << used[i][1] << "\n"; } cout << ans << "\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; using ll = long long; const int N = 1e6 + 5; int used[N * 3][2]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, ans = 0; cin >> n; for(int i = 0; i < n; i++){ int r, w, t; cin >> r >> w >> t; used[N + w - t][r & 1]++; // cout << w - t << " "; } for(int i = 0; i < 3 * N; i++){ ans += min(used[i][0], used[i][1]); // cout << i << " - " << used[i][0] << " " << used[i][1] << "\n"; } cout << ans << "\n"; } |