結果

問題 No.703 ゴミ拾い Easy
ユーザー tailstails
提出日時 2018-06-15 23:56:35
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 424 bytes
コンパイル時間 2,324 ms
コンパイル使用メモリ 172,968 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-07-05 13:06:16
合計ジャッジ時間 10,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 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 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 14 ms
11,264 KB
testcase_36 AC 14 ms
11,392 KB
testcase_37 WA -
testcase_38 AC 91 ms
11,392 KB
testcase_39 AC 14 ms
11,520 KB
testcase_40 AC 13 ms
11,392 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 15 ms
11,520 KB
testcase_47 TLE -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,a[4d5],x[4d5],y[4d5];
ll d,l;
{
	ll iz;
	rd(n,a(n),x(n),y(n));
	iz=n-1;
	ll j;
	for(j=n-2;j>=0;--j){
		ll ib,iy,lb,ly,l1,l2;
		ib=iz;
		lb=(x[j]-a[iz])**2+y[j]**2;
		iy=ib;
		while(--iy>=j&&a[iy+1]>x[j]){
			ly=(x[j]-a[iy])**2+y[j]**2+(x[iy+1]-a[iz])**2+y[iy+1]**2;
			if(ly<=lb){
				lb=ly;
				ib=iy;
			}
		}
		if(ib<iz){
			d+=(x[ib+1]-a[iz])**2+y[ib+1]**2;
			iz=ib;
		}
	}
	d+=(x[0]-a[iz])**2+y[0]**2;
	wt(d+l);
}
0