結果
問題 | No.1265 Balloon Survival |
ユーザー | sten_san |
提出日時 | 2020-10-29 20:17:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,168 bytes |
コンパイル時間 | 2,522 ms |
コンパイル使用メモリ | 212,744 KB |
実行使用メモリ | 9,692 KB |
最終ジャッジ日時 | 2024-07-21 22:38:46 |
合計ジャッジ時間 | 4,504 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 53 ms
9,556 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 24 ms
5,376 KB |
testcase_22 | AC | 16 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
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 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> using vec = vector<T>; template <typename T> using vvec = vector<vector<T>>; int main() { int n; cin >> n; vec<array<int, 2>> bal(n); for (auto &[x, y]: bal) cin >> x >> y; using dist_t = array<int, 3>; priority_queue<dist_t, vector<dist_t>, greater<dist_t>> que; for (int i = 0; i < n; ++i) { for (int j = i + 1; j < n; ++j) { int ax = bal[i][0], ay = bal[i][1]; int bx = bal[j][0], by = bal[j][1]; int dx = abs(ax - bx), dy = abs(ay - by); int dist = 0; if (ax == bx || ay == by) { dist = (max(dx, dy) + 1) / 2; } else { dist = (max(dx, dy)) / 2 + 1; } que.push({ dist, i, j }); } } int ans = 0; vec<bool> used(n, false); while (que.size()) { auto [d, a, b] = que.top(); que.pop(); if (used[a] || used[b]) continue; tie(a, b) = make_tuple(min(a, b), max(a, b)); used[a] = a != 0; used[b] = true; ans += a == 0; } cout << ans << endl; }