結果

問題 No.168 ものさし
ユーザー purple_jwlpurple_jwl
提出日時 2015-03-20 00:55:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,087 bytes
コンパイル時間 1,122 ms
コンパイル使用メモリ 159,216 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 14:50:27
合計ジャッジ時間 2,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
5,248 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 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 49 ms
5,376 KB
testcase_13 AC 80 ms
5,376 KB
testcase_14 AC 58 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 80 ms
5,376 KB
testcase_20 AC 64 ms
5,376 KB
testcase_21 AC 71 ms
5,376 KB
testcase_22 AC 73 ms
5,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