結果

問題 No.2179 Planet Traveler
ユーザー yamakeyamake
提出日時 2023-01-06 22:28:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,698 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 213,576 KB
実行使用メモリ 34,520 KB
最終ジャッジ日時 2024-05-07 22:06:57
合計ジャッジ時間 5,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 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 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 164 ms
32,824 KB
testcase_12 AC 143 ms
24,632 KB
testcase_13 WA -
testcase_14 AC 177 ms
32,828 KB
testcase_15 AC 169 ms
32,824 KB
testcase_16 WA -
testcase_17 AC 160 ms
32,952 KB
testcase_18 AC 158 ms
24,628 KB
testcase_19 AC 165 ms
32,824 KB
testcase_20 AC 20 ms
6,824 KB
testcase_21 AC 144 ms
24,108 KB
testcase_22 AC 95 ms
20,912 KB
testcase_23 AC 83 ms
20,348 KB
testcase_24 AC 132 ms
22,992 KB
testcase_25 AC 101 ms
21,360 KB
testcase_26 AC 139 ms
23,676 KB
testcase_27 AC 22 ms
6,848 KB
testcase_28 AC 69 ms
15,000 KB
testcase_29 AC 131 ms
22,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
#define rrep(i,n) for(int i=n-1;i>=0;--i)
#define debug(output) if(debugFlag)cout<<#output<<"= "<<output<<"\n";
using lint = long long;
typedef pair<int,int> P;
const bool debugFlag=true;
const lint linf=1.1e18;const int inf=1.01e9;
constexpr int MOD=1000000007;
template<class T>bool chmax(T &a, const T &b) { if(a < b){ a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if(a > b){ a = b; return 1; } return 0; }

double dist(array<lint,3> a,array<lint,3> b){
    if(a[2]==b[2]){
        // debug((a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1]));
        return sqrt((a[0]-b[0])*(a[0]-b[0])+(a[1]-b[1])*(a[1]-b[1]));
    }
    return abs(sqrt(a[0]*a[0]+a[1]*a[1])-sqrt(b[0]*b[0]+b[1]*b[1]));
}

signed main(){
    int n;cin>>n;
    vector<array<lint,3>> a(n);
    rep(i,n)rep(j,3)cin>>a[i][j];
    vector<vector<array<lint,2>>> edge(n+1);
    rep(i,n){
        rep(j,i){
            edge[i].push_back({j,(lint)ceil(dist(a[i],a[j])*dist(a[i],a[j]))});
            edge[j].push_back({i,(lint)ceil(dist(a[i],a[j])*dist(a[i],a[j]))});
        }
    }
    vector<lint> dp(n+1,linf);
    priority_queue<array<lint,2>,vector<array<lint,2>>,greater<array<lint,2>>> que;
    dp[0]=0;
    que.push({0,0});
    vector<bool> seen(n,false);
    while(!que.empty()){
        auto [d,v]=que.top();que.pop();
        if(seen[v])continue;
        seen[v]=true;
        for(auto& e:edge[v]){
            chmin(dp[e[0]],max(d,e[1]));
            que.push({max(d,e[1]),e[0]});
        }
    }
    // rep(i,n)debug(dp[i]);
    cout<<dp[n-1]<<"\n";
    return 0;
}
0