# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
891142 | JAVA_FF | Star triangles (IZhO11_triangle) | C++14 | 201 ms | 13412 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
int countRightTriangles(vector<pair<int, int>>& stars) {
unordered_map<int, int> xFreq, yFreq;
for (const auto& star : stars) {
xFreq[star.first]++;
yFreq[star.second]++;
}
int count = 0;
for (const auto& star : stars) {
count += (xFreq[star.first] - 1) * (yFreq[star.second] - 1);
}
return count;
}
int main() {
int N;
cin >> N;
vector<pair<int, int>> stars;
for (int i = 0; i < N; ++i) {
int x, y;
cin >> x >> y;
stars.emplace_back(x, y);
}
int result = countRightTriangles(stars);
cout << result << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |