結果

問題 No.2179 Planet Traveler
ユーザー kotatsugamekotatsugame
提出日時 2023-01-06 22:08:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 3,000 ms
コード長 861 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 75,740 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-05-07 21:43:42
合計ジャッジ時間 1,828 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 1 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 8 ms
8,448 KB
testcase_12 AC 11 ms
8,576 KB
testcase_13 AC 11 ms
8,320 KB
testcase_14 AC 9 ms
8,504 KB
testcase_15 AC 10 ms
8,448 KB
testcase_16 AC 9 ms
8,448 KB
testcase_17 AC 11 ms
8,444 KB
testcase_18 AC 12 ms
8,320 KB
testcase_19 AC 11 ms
8,320 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 11 ms
8,436 KB
testcase_22 AC 8 ms
7,424 KB
testcase_23 AC 7 ms
7,168 KB
testcase_24 AC 10 ms
7,808 KB
testcase_25 AC 8 ms
7,296 KB
testcase_26 AC 12 ms
8,192 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 6 ms
6,784 KB
testcase_29 AC 11 ms
8,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<queue>
#include<cmath>
using namespace std;
int N;
int X[800],Y[800],T[800];
long D[800][800];
long dist[800];
bool vis[800];
int main()
{
	cin>>N;
	for(int i=0;i<N;i++)cin>>X[i]>>Y[i]>>T[i];
	for(int i=0;i<N;i++)for(int j=i+1;j<N;j++)
	{
		if(T[i]!=T[j])
		{
			long I=X[i]*X[i]+Y[i]*Y[i];
			long J=X[j]*X[j]+Y[j]*Y[j];
			//I+J-2sqrt(IJ)<=S
			long S=I+J-(long)(2*sqrt(I*J))-5;
			if(S<0)S=0;
			while((I+J-S)*(I+J-S)>4*I*J)S++;
			D[i][j]=D[j][i]=S;
		}
		else
		{
			D[i][j]=D[j][i]=(long)(X[i]-X[j])*(X[i]-X[j])+(long)(Y[i]-Y[j])*(Y[i]-Y[j]);
		}
	}
	for(int i=1;i<N;i++)dist[i]=9e18;
	dist[0]=0;
	while(true)
	{
		int u=-1;
		for(int v=0;v<N;v++)if(!vis[v]&&(u==-1||dist[u]>dist[v]))u=v;
		if(u==-1)break;
		vis[u]=true;
		for(int v=0;v<N;v++)if(!vis[v])dist[v]=min(dist[v],max(dist[u],D[u][v]));
	}
	cout<<dist[N-1]<<endl;
}
0