結果

問題 No.168 ものさし
ユーザー purple_jwlpurple_jwl
提出日時 2015-03-20 00:55:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 144,872 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-25 20:46:59
合計ジャッジ時間 3,095 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 5 ms
4,380 KB
testcase_11 AC 24 ms
4,380 KB
testcase_12 AC 57 ms
4,376 KB
testcase_13 AC 88 ms
4,380 KB
testcase_14 AC 58 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 6 ms
4,380 KB
testcase_19 AC 91 ms
4,380 KB
testcase_20 AC 71 ms
4,376 KB
testcase_21 AC 83 ms
4,380 KB
testcase_22 AC 79 ms
4,376 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;

const double EPS = 1e-9;

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

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

  if(flg) return;

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

int main() {
  // ios_base::sync_with_stdio(false);
  cin >> N;
  rep(i, N) cin >> X[i] >> Y[i];
  
  ll lb = 0;
  ll ub = 1e18;

  while(ub - lb > 1) {
    ll mid = (lb + ub) / 2;
    memset(visited, false, sizeof(visited));
    flg = false;
    rec(0, mid);
    if(flg) ub = mid;
    else lb = mid;
  }

  ll ans = lb / 10 * 10 + 10;
  
  cout << ans << endl;
  
  return 0;
}
0