結果

問題 No.1283 Extra Fee
ユーザー yuruhiyayuruhiya
提出日時 2020-11-07 22:33:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 3,555 ms
コンパイル使用メモリ 179,604 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-11-16 07:07:09
合計ジャッジ時間 8,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
30,284 KB
testcase_01 AC 11 ms
30,696 KB
testcase_02 AC 11 ms
29,776 KB
testcase_03 AC 11 ms
28,988 KB
testcase_04 AC 11 ms
30,796 KB
testcase_05 AC 11 ms
29,188 KB
testcase_06 AC 12 ms
30,724 KB
testcase_07 AC 11 ms
30,880 KB
testcase_08 AC 11 ms
29,312 KB
testcase_09 AC 12 ms
29,060 KB
testcase_10 AC 11 ms
29,192 KB
testcase_11 AC 18 ms
32,120 KB
testcase_12 AC 21 ms
34,232 KB
testcase_13 AC 17 ms
35,388 KB
testcase_14 AC 39 ms
45,748 KB
testcase_15 AC 56 ms
54,108 KB
testcase_16 AC 19 ms
35,936 KB
testcase_17 AC 205 ms
105,544 KB
testcase_18 AC 222 ms
101,760 KB
testcase_19 AC 226 ms
105,472 KB
testcase_20 AC 213 ms
100,096 KB
testcase_21 AC 216 ms
101,504 KB
testcase_22 AC 194 ms
93,056 KB
testcase_23 AC 200 ms
108,288 KB
testcase_24 AC 205 ms
108,288 KB
testcase_25 AC 236 ms
108,288 KB
testcase_26 AC 238 ms
108,416 KB
testcase_27 AC 238 ms
108,416 KB
testcase_28 AC 237 ms
108,288 KB
testcase_29 AC 244 ms
108,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int n,m,a[6d6],b[6d6],k;
ll cost[501][501],c[6d6],dist[5d5];
int to_i(int x,int y,int f){return (y*n+x)*2+f;}
{
	rd(n,m);
	rep(i,m){
		ll@h,@w,@c;
		cost[h-1][w-1]=c;
	}
	VI d{1,0,-1,0,1};
	rep(i,n)rep(j,n)rep(_,4){
		int y=i+d[_],x=j+d[_+1];
		if(0<=x<n&&0<=y<n){
			a[k]=to_i(j,i,0);
			b[k]=to_i(x,y,0);
			c[k]=cost[y][x]+1;
			k++;
			a[k]=to_i(j,i,0);
			b[k]=to_i(x,y,1);
			c[k]=1;
			k++;
			a[k]=to_i(j,i,1);
			b[k]=to_i(x,y,1);
			c[k]=cost[y][x]+1;
			k++;
		}
	}
	wgraph<ll>g;
	g.setDirectEdge(5d5,k,a,b,c);
	g.getDist(0,dist);
	wt(dist[to_i(n-1,n-1,1)]);
}
0