結果
問題 | No.1265 Balloon Survival |
ユーザー | siman |
提出日時 | 2021-01-06 12:45:35 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,345 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 143,612 KB |
実行使用メモリ | 11,736 KB |
最終ジャッジ日時 | 2024-11-06 22:22:03 |
合計ジャッジ時間 | 3,967 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | WA | - |
testcase_15 | AC | 9 ms
5,248 KB |
testcase_16 | WA | - |
testcase_17 | AC | 52 ms
11,604 KB |
testcase_18 | WA | - |
testcase_19 | AC | 5 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 16 ms
5,584 KB |
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 | WA | - |
testcase_35 | AC | 2 ms
5,248 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <limits.h> #include <map> #include <queue> #include <set> #include <string.h> #include <vector> using namespace std; typedef long long ll; struct Node { int u; int v; double dist; Node(int u = -1, int v = -1, double dist = 0.0) { this->u = u; this->v = v; this->dist = dist; } bool operator>(const Node &n) const { return dist > n.dist; } }; int main() { int N; cin >> N; vector<int> X(N); vector<int> Y(N); for (int i = 0; i < N; ++i) { cin >> X[i] >> Y[i]; } priority_queue <Node, vector<Node>, greater<Node>> pque; for (int i = 0; i < N; ++i) { int x1 = X[i]; int y1 = Y[i]; for (int j = i + 1; j < N; ++j) { int x2 = X[j]; int y2 = Y[j]; int dx = x1 - x2; int dy = y1 - y2; pque.push(Node(i, j, dx * dx + dy * dy)); } } int ans = 0; bool checked[N]; memset(checked, false, sizeof(checked)); while (!pque.empty()) { Node node = pque.top(); pque.pop(); if (checked[node.u]) continue; if (checked[node.v]) continue; if (node.u == 0) { ++ans; checked[node.v] = true; } else { checked[node.u] = true; checked[node.v] = true; } } cout << ans << endl; return 0; }