結果
問題 | No.94 圏外です。(EASY) |
ユーザー | motxx |
提出日時 | 2014-12-07 21:19:24 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1,370 ms / 5,000 ms |
コード長 | 802 bytes |
コンパイル時間 | 1,439 ms |
コンパイル使用メモリ | 161,740 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-26 07:24:05 |
合計ジャッジ時間 | 17,989 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,b) for(int i=a;i<(int)b;i++) #define rep(i,n) REP(i,0,n) typedef complex<double> P; bool con[1100][1100]; int main() { int N; cin >> N; if(N == 0) { cout << 1 << endl; return 0; } vector<P> ps(N); rep(i, N) { double x, y; cin >> x >> y; ps[i] = P(x, y); } rep(i, N) { REP(j, i, N) { if(abs(ps[i]-ps[j]) <= 10.) { con[i][j] = con[j][i] = 1; } } } rep(k, N) rep(i, N) rep(j, N) { if(con[i][k] && con[k][j]) { con[i][j] = 1; } } double ans = 0.; rep(i, N) REP(j, i, N) { if(!con[i][j]) continue; ans = max(ans, abs(ps[i]-ps[j]) + 2); } printf("%.10f\n", ans); return 0; }