結果

問題 No.2179 Planet Traveler
ユーザー _yurimoir_yurimoir
提出日時 2023-01-07 09:02:56
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,547 bytes
コンパイル時間 3,619 ms
コンパイル使用メモリ 251,796 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-08 06:42:21
合計ジャッジ時間 8,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 15 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 WA -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
int32_t main(){
    int n;
    cin>>n;
    vector<int> x(n),y(n),t(n);
    for(int i=0;i<n;i++)cin>>x[i]>>y[i]>>t[i];
    int high,low;
    high=1e9;low=0;
    while(high-low>1){
        int mid=(high+low)/2;
        queue<int> que;
        que.push(0);
        vector<int> dist(n,1e9);
        dist[0]=0;
        while(!que.empty()){
            int px=que.front();
            que.pop();
            for(int i=0;i<n;i++){
                double d;
                if(t[px]!=t[i]){
                    int a,b;
                    a=x[i ]*x[i ]+y[i ]*y[i ];
                    b=x[px]*x[px]+y[px]*y[px];
                    double hq,lq;
                    hq=1e9;lq=0;
                    while(hq-lq>0.00001){
                        double mq=(hq+lq)/2.0;
                        if(mq*mq>(double)4.0*a*b){
                            hq=mq;
                        }else{
                            lq=mq;
                        }
                    }
                    d=(double)a+b-lq;
                }else{
                    d=(x[i ]-x[px])*(x[i ]-x[px])
                    + (y[i ]-y[px])*(y[i ]-y[px]);
                }
                if(d<=mid
                && dist[i]>dist[px]+1
                ){
                    dist[i]=dist[px]+1;
                    que.push(i);
                }
            }
        }
        if(dist[n-1]==1e9){
            low=mid;
        }else{
            high=mid;
        }
    }
    cout<<high<<endl;
    return 0;
}
0