結果

問題 No.2948 move move rotti
ユーザー tailstails
提出日時 2024-10-25 22:30:32
言語 cLay
(20240714-1)
結果
AC  
実行時間 1,157 ms / 4,000 ms
コード長 399 bytes
コンパイル時間 4,379 ms
コンパイル使用メモリ 183,552 KB
実行使用メモリ 8,396 KB
最終ジャッジ日時 2024-10-25 22:30:53
合計ジャッジ時間 8,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
7,492 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1,116 ms
8,392 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 5 ms
7,748 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 3 ms
6,820 KB
testcase_19 AC 137 ms
6,820 KB
testcase_20 AC 340 ms
7,232 KB
testcase_21 AC 1,157 ms
8,396 KB
testcase_22 AC 42 ms
6,820 KB
testcase_23 AC 863 ms
6,940 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 71 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 4 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@m,@k,y=0;
rep(k){
	ll@x--;
	y|=1<<x;
}
int@(u,v)--[m];
graph g;
g.setEdge(n,m,u,v);
rep(a,n){
	set<pair<ll,ll>>s,t;
	s.insert({1<<a,a});
	while(!s.empty()){
		ll z=y;
		for(auto b:s){
			ll e=b.second;
			z&=~(1<<e);
			rep[g.edge[e]](c,g.es[e]){
				if(~b.first&1<<c){
					t.insert({b.first|1<<c,c});
				}
			}
		}
		if(!z){
			wt("Yes");
			exit(0);
		}
		s=t;
		t.clear();
	}
}
wt("No");
0