結果
問題 |
No.1265 Balloon Survival
|
ユーザー |
![]() |
提出日時 | 2020-10-23 23:05:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,422 bytes |
コンパイル時間 | 1,058 ms |
コンパイル使用メモリ | 109,888 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 12:24:57 |
合計ジャッジ時間 | 2,205 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 4 WA * 28 |
ソースコード
#include <algorithm> #include <bitset> #include <chrono> #include <cmath> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <stack> #include <string> #include <unordered_map> #include <unordered_set> #include <vector> using ll = long long; using vll = std::vector<ll>; using namespace std; #define REP(i, x, n) for(int i = x; i < (n); i++) #define rep(i, n) REP(i, 0, n) const ll MOD = 1000000007; template<class T> void gi(T &x){ int minus=0; x=0; char c=getchar(); for(;c<'0'||c>'9'; c=getchar()) minus|=(c=='-'); for(;c>='0'&&c<='9'; c=getchar()) x=(x<<1)+(x<<3)+(c^48); if(minus) x=-x; } int main() { int n; gi(n); vector<pair<int,int>> xy; rep(i,n){ int x,y; gi(x);gi(y); xy.push_back({x,y}); } vector<bool> chk(n); REP(i,1,n){ if(chk[i]) continue; ll d0 = ((ll)ceil(sqrt((xy[0].first-xy[i].first)*(xy[0].first-xy[i].first) +(xy[0].second-xy[i].second)*(xy[0].second-xy[i].second))) + 1) / 2; REP(j,i+1,n){ if(chk[j]) continue; ll d = ((ll)ceil(sqrt((xy[j].first-xy[i].first)*(xy[j].first-xy[i].first) +(xy[j].second-xy[i].second)*(xy[j].second-xy[i].second))) + 1) / 2; if(d < d0){ chk[i] = true; chk[j] = true; break; } } } int cnt=0; REP(i,1,n){ if(chk[i]==false) cnt++; } printf( "%d\n", cnt ); return 0; }