結果
問題 | No.1265 Balloon Survival |
ユーザー | mmn15277198 |
提出日時 | 2020-11-17 14:45:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,629 bytes |
コンパイル時間 | 1,044 ms |
コンパイル使用メモリ | 103,160 KB |
実行使用メモリ | 13,388 KB |
最終ジャッジ日時 | 2024-07-23 08:17:01 |
合計ジャッジ時間 | 2,872 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,948 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 37 ms
12,496 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 13 ms
6,940 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
6,940 KB |
ソースコード
#include<iostream> #include<stdio.h> #include<stdlib.h> #include<algorithm> #include<vector> #include<string.h> #include<math.h> #include<map> #include<iomanip> #include<queue> #include<set> #define rep(i,n) for(int (i) = 0; i < (n); i++) using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; //const ll mod = 1e9 + 7; const ll mod = 998244353; const int inf = 123456; const int siz = 202020; ll dist(int a , int b , int c , int d){ return (a - b)*(a - b) + (c - d)*(c - d); } int main() { int n; cin >> n; vector<int> x(n) , y(n); for(int i = 0; i < n; i++){ cin >> x[i] >> y[i]; } vector<pair<ll , pair<int , int> > > v; for(int i = 0; i < n - 1; i++){ for(int j = i + 1; j < n; j++){ ll d = dist(x[i] , x[j] , y[i] , y[j]); v.push_back(make_pair(d , make_pair(i , j))); } } sort(v.begin() , v.end()); vector<int> used(n + 100 , false); int ans = 0; for(int i = 0; i < v.size(); i++){ int x = v[i].second.first; int y = v[i].second.second; //cout << x << " : " << y << endl; if(x == 0 && y == 0){ continue; } if(used[x] == true || used[y] == true){ continue; } if(x == 0 && used[y] == false){ used[y] = true; ans++; continue; } used[x] = used[y] = true; } cout << ans << endl; return 0; }