結果

問題 No.168 ものさし
ユーザー purple_jwlpurple_jwl
提出日時 2015-03-20 00:29:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,131 bytes
コンパイル時間 1,285 ms
コンパイル使用メモリ 144,420 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 08:56:36
合計ジャッジ時間 3,134 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
4,376 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 76 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 70 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 AC 40 ms
4,376 KB
testcase_12 AC 39 ms
4,376 KB
testcase_13 AC 87 ms
4,380 KB
testcase_14 AC 19 ms
4,376 KB
testcase_15 AC 17 ms
4,376 KB
testcase_16 AC 14 ms
4,380 KB
testcase_17 AC 15 ms
4,376 KB
testcase_18 AC 12 ms
4,376 KB
testcase_19 AC 100 ms
4,376 KB
testcase_20 AC 30 ms
4,376 KB
testcase_21 AC 106 ms
4,376 KB
testcase_22 AC 52 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i, x, n) for(int i = x; i < (int)(n); i++)
#define rep(i, n) REP(i, 0, n)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define F first
#define S second
#define mp make_pair

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> P;

int N;
double X[1000], Y[1000];
bool visited[1000];
bool flg;

void rec(int idx, double L) {
  visited[idx] = true;
  
  if(idx == N - 1) {
    flg = true;
  }

  if(flg) return;

  rep(i, N) {
    if(i == idx || visited[i]) continue;
    if(pow(X[i] - X[idx], 2) + pow(Y[i] - Y[idx], 2) <= L * L) {
      rec(i, L);
    }
  }
}

int main() {
  // ios_base::sync_with_stdio(false);
  cin >> N;
  rep(i, N) cin >> X[i] >> Y[i];

  double lb = 0;
  double ub = 1e9 + 10;

  rep(i, 100) {
    double mid = (lb + ub) / 2;
    memset(visited, false, sizeof(visited));
    flg = false;
    rec(0, mid);
    if(flg) ub = mid;
    else lb = mid;
  }

  int ans = 0;
  for(int i = 10; i <= 1e9 + 10; i += 10) {
    ans = i;
    if(i > ub) break;
  }

  cout << ans << endl;
  
  return 0;
}
0