結果

問題 No.1209 XOR Into You
ユーザー tailstails
提出日時 2020-08-30 20:57:27
言語 cLay
(20240714-1)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 186,888 KB
実行使用メモリ 78,720 KB
最終ジャッジ日時 2024-07-05 13:57:20
合計ジャッジ時間 10,421 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 6 ms
6,016 KB
testcase_05 AC 6 ms
5,888 KB
testcase_06 AC 160 ms
78,464 KB
testcase_07 AC 215 ms
66,304 KB
testcase_08 AC 162 ms
60,160 KB
testcase_09 AC 169 ms
60,160 KB
testcase_10 AC 130 ms
50,048 KB
testcase_11 AC 159 ms
59,648 KB
testcase_12 AC 147 ms
55,808 KB
testcase_13 AC 183 ms
62,848 KB
testcase_14 AC 140 ms
54,272 KB
testcase_15 AC 158 ms
57,088 KB
testcase_16 AC 155 ms
55,936 KB
testcase_17 AC 143 ms
53,888 KB
testcase_18 AC 228 ms
75,264 KB
testcase_19 AC 149 ms
55,936 KB
testcase_20 AC 173 ms
63,104 KB
testcase_21 AC 123 ms
48,896 KB
testcase_22 AC 134 ms
78,720 KB
testcase_23 AC 134 ms
78,720 KB
testcase_24 AC 134 ms
78,720 KB
testcase_25 AC 226 ms
78,720 KB
testcase_26 AC 228 ms
78,592 KB
testcase_27 AC 229 ms
78,720 KB
testcase_28 AC 233 ms
78,720 KB
testcase_29 AC 231 ms
78,592 KB
testcase_30 AC 232 ms
78,464 KB
testcase_31 AC 41 ms
7,936 KB
testcase_32 AC 41 ms
7,936 KB
testcase_33 AC 41 ms
7,936 KB
testcase_34 AC 41 ms
7,936 KB
testcase_35 AC 41 ms
8,064 KB
testcase_36 AC 40 ms
7,936 KB
testcase_37 AC 10 ms
7,552 KB
testcase_38 AC 191 ms
65,792 KB
testcase_39 AC 197 ms
59,136 KB
testcase_40 AC 134 ms
78,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll n,a[1d5],b[1d5],x,z;
map<ll,stack<ll>>m;
fenwick<ll>f;
{
	rd(n,a(n),b(n));
	if(a[0]!=b[0]||a[n-1]!=b[n-1])wt(-1),exit(0);
	f.walloc(n,1);
	rep(i,n-1)a[i]^=a[i+1],b[i]^=b[i+1],m[b[i]].push(i);
	rrep(i,n-1){
		if(m[a[i]].empty())wt(-1),exit(0);
		z+=f.get(x=m[a[i]].top());
		f.add(x,1);
		m[a[i]].pop();
	}
	wt(z);
}
0