結果
問題 | No.94 圏外です。(EASY) |
ユーザー | natsugir |
提出日時 | 2014-12-07 19:47:27 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 1,663 ms / 5,000 ms |
コード長 | 1,110 bytes |
コンパイル時間 | 658 ms |
コンパイル使用メモリ | 65,884 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 07:21:15 |
合計ジャッジ時間 | 20,071 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 19 ms
5,376 KB |
testcase_06 | AC | 68 ms
5,376 KB |
testcase_07 | AC | 216 ms
5,376 KB |
testcase_08 | AC | 618 ms
5,376 KB |
testcase_09 | AC | 1,642 ms
5,376 KB |
testcase_10 | AC | 1,634 ms
5,376 KB |
testcase_11 | AC | 1,612 ms
5,376 KB |
testcase_12 | AC | 1,628 ms
5,376 KB |
testcase_13 | AC | 1,636 ms
5,376 KB |
testcase_14 | AC | 1,660 ms
5,376 KB |
testcase_15 | AC | 1,624 ms
5,376 KB |
testcase_16 | AC | 1,658 ms
5,376 KB |
testcase_17 | AC | 1,663 ms
5,376 KB |
testcase_18 | AC | 1,639 ms
5,376 KB |
testcase_19 | AC | 1,319 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 28 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:29:21: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 29 | REP (i, N) scanf("%d%d", X+i, Y+i); | ~~~~~^~~~~~~~~~~~~~~~~~
ソースコード
#include<cstdio> #include<iostream> #include<vector> #include<algorithm> #include<string> #include<cstring> #include<cmath> using namespace std; typedef long long LL; typedef vector<int> VI; #define REP(i,n) for(int i=0; i<int(n); i++) #define EACH(i,c) for(__typeof((c).begin()) i=(c).begin();i!=(c).end();i++) template<class T> inline T &amin(T &a, T b) { if (a>b) a=b; return a; } template<class T> inline T &amax(T &a, T b) { if (a<b) a=b; return a; } int N, X[1111], Y[1111]; bool FW[1111][1111]; int sq(int x) { return x*x; } int sqsum(int i, int j) { return sq(X[i] - X[j]) + sq(Y[i] - Y[j]); } double hypot(int i, int j) { return sqrt(sqsum(i, j)); } int main() { scanf("%d", &N); REP (i, N) scanf("%d%d", X+i, Y+i); REP (i, N) REP (j, N) if (sqsum(i, j) <= 100) FW[i][j] = true; REP (k, N) REP (i, N) REP (j, N) FW[i][j] = FW[i][j] || (FW[i][k] && FW[k][j]); double ans = 1; REP (i, N) { REP (j, N) { if (FW[i][j]) { amax(ans, hypot(i, j) + 2.0); } } } printf("%.9f\n", ans); return 0; }