結果
問題 | No.168 ものさし |
ユーザー | horizon4096 |
提出日時 | 2017-12-28 13:21:57 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,449 bytes |
コンパイル時間 | 657 ms |
コンパイル使用メモリ | 77,040 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-06-06 15:11:33 |
合計ジャッジ時間 | 1,509 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
7,424 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 6 ms
7,168 KB |
testcase_12 | AC | 17 ms
10,240 KB |
testcase_13 | AC | 19 ms
11,264 KB |
testcase_14 | AC | 14 ms
11,520 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 13 ms
11,264 KB |
testcase_20 | AC | 10 ms
11,392 KB |
testcase_21 | AC | 22 ms
11,392 KB |
testcase_22 | AC | 10 ms
11,368 KB |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:59:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 59 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:61:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 61 | 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]; ll dist[1001][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; if (dist[v][i] <= (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]); } for (int i = 1; i <= N; i++) { for (int j = 1; j <= N; j++) { int x = X[j] - X[i]; int y = Y[j] - Y[i]; dist[i][j] = (ll)x * (ll)x + (ll)y * (ll)y; } } 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; }