結果
問題 | No.1265 Balloon Survival |
ユーザー | totori_nyaa |
提出日時 | 2020-10-23 22:12:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 1,316 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 205,764 KB |
実行使用メモリ | 11,640 KB |
最終ジャッジ日時 | 2024-07-21 10:44:45 |
合計ジャッジ時間 | 4,992 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
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 | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 10 ms
5,376 KB |
testcase_15 | AC | 7 ms
5,376 KB |
testcase_16 | AC | 5 ms
5,376 KB |
testcase_17 | AC | 58 ms
11,636 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | AC | 4 ms
5,376 KB |
testcase_20 | AC | 10 ms
5,376 KB |
testcase_21 | AC | 22 ms
5,376 KB |
testcase_22 | AC | 14 ms
5,484 KB |
testcase_23 | AC | 15 ms
5,480 KB |
testcase_24 | AC | 157 ms
11,636 KB |
testcase_25 | AC | 138 ms
11,508 KB |
testcase_26 | AC | 141 ms
11,636 KB |
testcase_27 | AC | 143 ms
11,640 KB |
testcase_28 | AC | 146 ms
11,640 KB |
testcase_29 | AC | 153 ms
11,636 KB |
testcase_30 | AC | 149 ms
11,512 KB |
testcase_31 | AC | 148 ms
11,636 KB |
testcase_32 | AC | 145 ms
11,636 KB |
testcase_33 | AC | 145 ms
11,640 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
ソースコード
// #pragma GCC target("avx2") // #pragma GCC optimize("O3") // #pragma GCC optimize("unroll-loops") #include<bits/stdc++.h> using namespace std; typedef long long ll; #define endl '\n' #define all(x) (x).begin(),(x).end() template<typename T1,typename T2> bool chmin(T1 &a,T2 b){if(a<=b)return 0; a=b; return 1;} template<typename T1,typename T2> bool chmax(T1 &a,T2 b){if(a>=b)return 0; a=b; return 1;} int dx[4]={0,1,0,-1}, dy[4]={1,0,-1,0}; long double eps = 1e-9; long double pi = acos(-1); struct S{ ll time; int l,r; bool operator>(const S &s) const{ return time > s.time; } }; signed main(){ ios::sync_with_stdio(false); cin.tie(0); cout << fixed << setprecision(20); int n; cin>>n; ll x[n],y[n]; for(int i=0;i<n;i++){ cin>>x[i]>>y[i]; } int ans = 0; bool used[n]={}; priority_queue<S,vector<S>,greater<S>> pq; for(int i=0;i<n;i++){ for(int j=i+1;j<n;j++){ ll dist = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]); pq.push({dist,i,j}); } } while(pq.size()){ auto [time,l,r] = pq.top(); pq.pop(); if(used[l] || used[r])continue; if(l!=0)used[l] = 1; used[r] = 1; if(l == 0)ans++; } cout << ans << endl; }