# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
91065 | quotitquot | 별들과 삼각형 (IZhO11_triangle) | C++98 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc scanf
#define pf printf
#define se second
#define sq(x) x * x
#define ll long long
#define pb push_back
#define mk make_pair
#define ld long double
#define pr pair<ll,ll>
#define sz(s) int(s.size())
#define piip pair< pair<ll,ll>,ll >
//#define fin(s) freopen( s, "r", stdin )
//#define fout(s) freopen( s, "w", stdout )
#define TIME ios_base::sync_with_stdio(0)
using namespace std;
const ll INF = 1e9;
const ll N = 1e5 + 1;
const ll mod = 1e9 + 7;
const long double eps = 1E-7;
map<ll,ll>l, r;
ll n, x[N], y[N], ans;
int main()
{
TIME;
freopen( "triangles.in", "r", stdin )
freopen( "triangles.out", "w", stdout )
cin >> n;
for( int i = 1; i <= n; i ++ )
{
cin >> x[i] >> y[i];
l[x[i]] ++, r[y[i]] ++;
}
for( int i = 1; i <= n; i ++ )
ans += (l[x[i]]-1) * (r[y[i]]-1);
cout << ans << endl;
}