/* -----------------------
Autor: Tomasz Boguslawski
-------------------------- */
#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<fstream>
#include<iomanip>
#include<string>
#include<sstream>
#include<cstring>
#include<map>
#include<vector>
#include<set>
#include<queue>
#include<algorithm>
#include <fstream>
#include<math.h>
#define FOR(x, b, e) for(long x = b; x <= (e); x++)
#define FORD(x, b, e) for(long x = b; x >= (e); x--)
#define VAR(v, n) __typeof(n) v = (n)
#define ALL(c) (c).begin(), (c).end()
#define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i)
#define DEBUG if (debug)
#define MIN(a,b) ((a>b)?b:a)
#define MAX(a,b) ((a>b)?a:b)
#define LL long long
long ile1[3000001];
long ile2[3000001];
using namespace std;
/// MAIN
int main(int argc, char* argv[])
{
// magic formula, which makes streams work faster:
ios_base::sync_with_stdio(0);
FOR(i,0,3000000) { ile1[i]=0; ile2[i]=0; };
long n; cin >> n;
long r, w, t, delta;
FOR(i,1,n)
{
cin >> r; cin >> w; cin >> t;
delta=w-t+1000010;
if (r==1) ile1[delta]++; else ile2[delta]++;
}
long us = 0;
FOR(i,0,3000000) us+=MIN(ile1[i], ile2[i]);
cout << us << "\n";
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | /* ----------------------- Autor: Tomasz Boguslawski -------------------------- */ #include<cstdio> #include<cstdlib> #include<iostream> #include<fstream> #include<iomanip> #include<string> #include<sstream> #include<cstring> #include<map> #include<vector> #include<set> #include<queue> #include<algorithm> #include <fstream> #include<math.h> #define FOR(x, b, e) for(long x = b; x <= (e); x++) #define FORD(x, b, e) for(long x = b; x >= (e); x--) #define VAR(v, n) __typeof(n) v = (n) #define ALL(c) (c).begin(), (c).end() #define FOREACH(i, c) for(VAR(i, (c).begin()); i != (c).end(); ++i) #define DEBUG if (debug) #define MIN(a,b) ((a>b)?b:a) #define MAX(a,b) ((a>b)?a:b) #define LL long long long ile1[3000001]; long ile2[3000001]; using namespace std; /// MAIN int main(int argc, char* argv[]) { // magic formula, which makes streams work faster: ios_base::sync_with_stdio(0); FOR(i,0,3000000) { ile1[i]=0; ile2[i]=0; }; long n; cin >> n; long r, w, t, delta; FOR(i,1,n) { cin >> r; cin >> w; cin >> t; delta=w-t+1000010; if (r==1) ile1[delta]++; else ile2[delta]++; } long us = 0; FOR(i,0,3000000) us+=MIN(ile1[i], ile2[i]); cout << us << "\n"; return 0; }; |
English