結果
問題 | No.2769 Number of Rhombi |
ユーザー | Kei |
提出日時 | 2024-06-01 00:42:07 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,481 bytes |
コンパイル時間 | 5,372 ms |
コンパイル使用メモリ | 300,092 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-06-01 00:42:24 |
合計ジャッジ時間 | 15,605 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 163 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { int N; cin >> N; map<pair<int, int>, int> m; vector<int> x(N), y(N); for (int i = 0; i < N; i++) { cin >> x[i] >> y[i]; m[make_pair(x[i], y[i])] = i; } set<vector<int>>st; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { int dx = x[j] - x[i]; int dy = y[j] - y[i]; int nx = x[j], ny = y[j]; vector<int> tmp = {i, j}; int x2 = x[j] + dy; int y2 = y[j] - dx; int x3 = x2 - dx; int y3 = y2 - dy; pair<int, int> p2 = make_pair(x2, y2); pair<int, int> p3 = make_pair(x3, y3); if (m.count(p2) && m.count(p3)) { tmp.push_back(m[p2]); tmp.push_back(m[p3]); } sort(tmp.begin(), tmp.end()); tmp.erase(unique(tmp.begin(), tmp.end()), tmp.end()); if (tmp.size() == 4) { st.insert(tmp); } tmp = {i, j}; x2 = x[j] + dy; y2 = y[j] + dx; x3 = x2 - dx; y3 = y2 - dy; p2 = make_pair(x2, y2); p3 = make_pair(x3, y3); if (m.count(p2) && m.count(p3)) { tmp.push_back(m[p2]); tmp.push_back(m[p3]); } sort(tmp.begin(), tmp.end()); tmp.erase(unique(tmp.begin(), tmp.end()), tmp.end()); if (tmp.size() != 4) continue; st.insert(tmp); } } // for (vector<int> p : st) { // for (int w : p) { // cout << w << ' '; // } // cout << endl; // } cout << st.size() << endl; }