# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
171347 | 2019-12-28T11:19:22 Z | ASDF123 | Star triangles (IZhO11_triangle) | C++14 | 2 ms | 380 KB |
#include <bits/stdc++.h> using namespace std; #define all(s) s.begin(), s.end() #define szof(s) (int)s.size() #define pii pair<int, int> #define prev myyyyrza1 #define pb push_back #define y1 myyyyrza2 #define id id1234 #define fr first #define sc second #define OK() puts("OK") using namespace std; const int N = ((int)3e5 + 5); const int MOD = (1e9 + 7); const int INF = (0x3f3f3f3f); int X[N], Y[N]; map <int, vector <int>> cntx, cnty; main() { int n; cin >> n; for (int i = 1; i <= n; i++) { scanf("%d%d", &X[i], &Y[i]); cnty[Y[i]].pb(X[i]); cntx[X[i]].pb(Y[i]); } long long ans = 0; for (int i = 1; i <= n; i++) { int x = X[i], y = Y[i]; ans += (cntx[y].size() - 1LL) * (cnty[x].size() - 1LL); } cout << ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 380 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
3 | Correct | 1 ms | 380 KB | Output is correct |
4 | Incorrect | 2 ms | 376 KB | Output isn't correct |
5 | Halted | 0 ms | 0 KB | - |