結果

問題 No.1577 織姫と彦星2
ユーザー tailstails
提出日時 2021-06-29 14:57:57
言語 cLay
(20240714-1)
結果
RE  
実行時間 -
コード長 681 bytes
コンパイル時間 2,219 ms
コンパイル使用メモリ 186,488 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-07-05 15:21:04
合計ジャッジ時間 29,040 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 1 ms
5,376 KB
testcase_05 AC 76 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 661 ms
7,680 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 132 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 RE -
testcase_13 AC 91 ms
5,376 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 2 ms
5,376 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 746 ms
5,376 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 AC 397 ms
5,376 KB
testcase_43 RE -
testcase_44 AC 3 ms
5,376 KB
testcase_45 RE -
testcase_46 AC 60 ms
5,376 KB
testcase_47 AC 873 ms
5,376 KB
testcase_48 AC 165 ms
5,376 KB
testcase_49 RE -
testcase_50 AC 94 ms
5,376 KB
testcase_51 AC 12 ms
5,376 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 AC 22 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	VI nodes[32];
	map<int,VI> edges;
	set<int> vis;

	ll@n,@st,@ed;
	nodes[__builtin_popcountl(st)].push_back(st);
	nodes[__builtin_popcountl(ed)].push_back(ed);
	rep(n){
		ll@s;
		nodes[__builtin_popcountl(s)].push_back(s);
	}
	rep(i,31){
		for(ll j:nodes[i]){
			for(ll k:nodes[i+1]){
				if(__builtin_popcount(j^k)==1){
					edges[j].push_back(k);
					edges[k].push_back(j);
				}
			}
		}
	}
	int q[3000];
	ll qr=0,qw=0,ans=0;
	q[qw++]=st;
	while(qr<qw){
		ll qn=qw;
		while(qr<qn){
			ll s=q[qr++];
			if(s==ed){
				wt(ans-1);
				exit(0);
			}
			for(ll j:edges[s]){
				if(vis.find(j)==vis.end()){
					vis.insert(j);
					q[qw++]=j;
				}
			}
		}
		++ans;
	}
	wt(-1);
}
0