結果

問題 No.2179 Planet Traveler
ユーザー tailstails
提出日時 2023-01-06 23:14:28
言語 cLay
(20240714-1)
結果
AC  
実行時間 51 ms / 3,000 ms
コード長 474 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 174,340 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-11-30 20:02:21
合計ジャッジ時間 3,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 15 ms
8,576 KB
testcase_12 AC 13 ms
8,576 KB
testcase_13 AC 11 ms
8,576 KB
testcase_14 AC 30 ms
8,448 KB
testcase_15 AC 51 ms
8,576 KB
testcase_16 AC 40 ms
8,576 KB
testcase_17 AC 38 ms
8,576 KB
testcase_18 AC 37 ms
8,576 KB
testcase_19 AC 28 ms
8,576 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 29 ms
8,320 KB
testcase_22 AC 17 ms
7,424 KB
testcase_23 AC 15 ms
7,296 KB
testcase_24 AC 30 ms
8,064 KB
testcase_25 AC 17 ms
7,552 KB
testcase_26 AC 24 ms
8,192 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 13 ms
6,784 KB
testcase_29 AC 30 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,m,d[800][800],v[800];

void f(ll i){
	v[i]=1;
	rep(j,n){
		if(!v[j]&&d[i][j]<=m){
			f(j);
		}
	}
}


{
	rd(n);
	ll x[n],y[n],t[n];
	rd((x,y,t)(n));
	rep(i,n){
		rep(j,i){
			d[i][j]=d[j][i]=
				t[i]==t[j] ?
				(x[i]-x[j])**2+(y[i]-y[j])**2 :
				x[i]**2+y[i]**2+x[j]**2+y[j]**2-Isqrt(4*(x[i]**2+y[i]**2)*(x[j]**2+y[j]**2));
		}
	}
	ll l=-1,h=33d8;
	while(l+1<h){
		m=l+h>>1;
		rep(i,n){
			v[i]=0;
		}
		f(0);
		if(v[n-1]){
			h=m;
		}else{
			l=m;
		}
	}
	wt(h);
}
0