結果
問題 | No.168 ものさし |
ユーザー | horizon4096 |
提出日時 | 2017-12-28 13:24:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 23 ms / 2,000 ms |
コード長 | 1,328 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 76,912 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 15:11:36 |
合計ジャッジ時間 | 1,391 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 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 | 5 ms
5,376 KB |
testcase_12 | AC | 15 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 12 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 12 ms
5,376 KB |
testcase_20 | AC | 8 ms
5,376 KB |
testcase_21 | AC | 23 ms
5,376 KB |
testcase_22 | AC | 9 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:61:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:63:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 63 | scanf("%d%d", &X[i], &Y[i]); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> #include <iostream> #include <vector> #include <deque> #include <queue> #include <stack> #include <map> #include <string> #include <algorithm> #include <numeric> #include <utility> #include <cmath> using namespace std; typedef long long ll; typedef unsigned int uint; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<ll, int> pli; const int iinf = 1 << 29; const long long linf = 1ll << 61; #define dump(x) cerr << #x << " : " << x << '\n' #define MOD(x, y) (((y) + (x) % (y)) % (y)) int N; int X[1001]; int Y[1001]; bool visit[1001]; bool C(int d) { d *= 10; fill(visit, visit + 1001, false); queue<int> q; q.push(1); visit[1] = true; while (!q.empty()) { int v = q.front(); q.pop(); if (v == N) return true; for (int i = 1; i <= N; i++) { if (visit[i]) continue; ll x = X[v] - X[i]; ll y = Y[v] - Y[i]; ll dist = x * x + y * y; if (dist <= (ll)d * (ll)d) { visit[i] = true; q.push(i); } } } return false; } int main(int argc, char* argv[]) { scanf("%d", &N); for (int i = 1; i <= N; i++) { scanf("%d%d", &X[i], &Y[i]); } int l = 0, u = (int)(pow(10, 9) * pow(2, 0.5) / 10) + 1; while (l < u) { int mid = (l + u) / 2; if (C(mid)) u = mid; else l = mid + 1; } printf("%d\n", u * 10); return 0; }