結果

問題 No.168 ものさし
ユーザー beetbeet
提出日時 2018-11-23 12:58:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 203,128 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-06 23:12:37
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  Int n;
  cin>>n;
  vector<Int> x(n),y(n);
  for(Int i=0;i<n;i++) cin>>x[i]>>y[i];

  auto dist=
    [&](Int a,Int b){
      Int v=(x[a]-x[b])*(x[a]-x[b])+(y[a]-y[b])*(y[a]-y[b]);
      Int d=(Int)sqrtl(v)/10*10;
      while((d-10)*(d-10)>=v) d-=10;
      while(d*d<v) d+=10;
      return d;
    };
  
  const Int INF = 1e15;
  vector<Int> dp(n,INF),used(n,0);
  dp[0]=0;  
  for(Int t=0;t<n;t++){
    Int v=-1;
    for(Int i=0;i<n;i++){
      if(used[i]) continue;
      if(v<0||dp[v]>dp[i]) v=i;
    }
    if(v<0) break;    
    used[v]=1;
    for(Int i=0;i<n;i++)
      chmin(dp[i],max(dp[v],dist(v,i)));
  }
  
  cout<<dp[n-1]<<endl;
  return 0;
}
0