結果

問題 No.2061 XOR Sort
ユーザー publfl2publfl2
提出日時 2022-08-26 22:44:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 54,460 KB
実行使用メモリ 27,228 KB
最終ジャッジ日時 2024-10-13 23:21:51
合計ジャッジ時間 5,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 168 ms
14,860 KB
testcase_15 AC 166 ms
14,408 KB
testcase_16 AC 323 ms
26,452 KB
testcase_17 AC 214 ms
17,984 KB
testcase_18 AC 212 ms
18,304 KB
testcase_19 AC 209 ms
17,852 KB
testcase_20 AC 33 ms
5,256 KB
testcase_21 AC 94 ms
9,600 KB
testcase_22 AC 162 ms
14,572 KB
testcase_23 AC 5 ms
5,248 KB
testcase_24 AC 338 ms
27,076 KB
testcase_25 AC 338 ms
27,148 KB
testcase_26 AC 338 ms
27,048 KB
testcase_27 AC 341 ms
27,044 KB
testcase_28 AC 335 ms
27,228 KB
testcase_29 AC 35 ms
10,728 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>
#define MOD 998244353

std::vector< std::vector<int> > V1,V2;
std::vector<int> temp1, temp2;

int x[200010];
int count[110];
int main()
{
	int a;
	scanf("%d",&a);
	for(int i=1;i<=a;i++) scanf("%d",&x[i]);
	
	long long int ans = 1;
	for(int i=1;i<=a;i++) temp1.push_back(x[i]);
	V1.push_back(temp1);
	for(int j=30;j>=0;j--)
	{
		V2.clear();
		for(int i=0;i<V1.size();i++)
		{
			temp1.clear();
			temp2.clear();
			for(int k=0;k<V1[i].size();k++)
			{
				if(((V1[i][k]>>j)&1)==0) temp1.push_back(V1[i][k]);
				else temp2.push_back(V1[i][k]);
			}
			if(temp1.size()>0) V2.push_back(temp1);
			if(temp2.size()>0) V2.push_back(temp2);
		}
		if(V1.size()<V2.size()) ans*=2;
		V1.clear();
		for(int i=0;i<V2.size();i++) V1.push_back(V2[i]);
	}
	
	printf("%lld",ans%MOD);
}
0