結果

問題 No.937 Ultra Sword
ユーザー kotatsugamekotatsugame
提出日時 2019-11-29 22:51:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 257 ms / 3,000 ms
コード長 891 bytes
コンパイル時間 612 ms
コンパイル使用メモリ 69,628 KB
実行使用メモリ 18,052 KB
最終ジャッジ日時 2024-11-21 02:40:15
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,820 KB
testcase_01 AC 8 ms
6,820 KB
testcase_02 AC 8 ms
6,820 KB
testcase_03 AC 8 ms
6,824 KB
testcase_04 AC 8 ms
6,816 KB
testcase_05 AC 100 ms
17,560 KB
testcase_06 AC 209 ms
15,176 KB
testcase_07 AC 227 ms
16,020 KB
testcase_08 AC 107 ms
10,864 KB
testcase_09 AC 78 ms
8,444 KB
testcase_10 AC 257 ms
17,152 KB
testcase_11 AC 46 ms
7,924 KB
testcase_12 AC 213 ms
16,008 KB
testcase_13 AC 185 ms
16,176 KB
testcase_14 AC 222 ms
17,264 KB
testcase_15 AC 181 ms
14,544 KB
testcase_16 AC 10 ms
6,820 KB
testcase_17 AC 25 ms
6,820 KB
testcase_18 AC 199 ms
15,012 KB
testcase_19 AC 116 ms
11,392 KB
testcase_20 AC 101 ms
10,452 KB
testcase_21 AC 150 ms
18,052 KB
testcase_22 AC 9 ms
6,816 KB
testcase_23 AC 9 ms
6,816 KB
testcase_24 AC 107 ms
17,592 KB
testcase_25 AC 150 ms
17,352 KB
testcase_26 AC 146 ms
15,076 KB
testcase_27 AC 132 ms
14,892 KB
testcase_28 AC 181 ms
16,616 KB
testcase_29 AC 11 ms
6,816 KB
testcase_30 AC 132 ms
12,788 KB
testcase_31 AC 190 ms
17,636 KB
testcase_32 AC 101 ms
13,876 KB
testcase_33 AC 169 ms
17,888 KB
testcase_34 AC 37 ms
8,748 KB
testcase_35 AC 19 ms
6,816 KB
testcase_36 AC 159 ms
16,188 KB
testcase_37 AC 22 ms
6,816 KB
testcase_38 AC 133 ms
14,380 KB
testcase_39 AC 13 ms
6,816 KB
testcase_40 AC 142 ms
15,144 KB
testcase_41 AC 54 ms
10,368 KB
testcase_42 AC 104 ms
14,384 KB
testcase_43 AC 108 ms
12,368 KB
testcase_44 AC 45 ms
7,552 KB
testcase_45 AC 68 ms
10,336 KB
testcase_46 AC 88 ms
11,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    9 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int N,A[1<<17];
long S[1<<17];
long sum=0,ans=0;
long B[1700000];
bool dp[1<<17];
main()
{
	cin>>N;
	int sz=0;
	for(int i=0;i<N;i++)
	{
		long a;cin>>a;A[a]++;
		sum+=a;
		for(int j=0;j<17;j++)
		{
			B[i*17+j]=a<<j;
		}
	}
	for(int i=100000;i>1;i--)
	{
		for(int j=i;j<=100000;j+=i)
		{
			S[i]+=A[j]*(long)(j/i*(i-1));
		}
	}
	int idx=0;
	for(int i=33;i>=0;i--)
	{
		int id=-1;
		for(int j=idx;j<17*N;j++)
		{
			if(B[j]>>i&1)
			{
				id=j;
				break;
			}
		}
		if(id<0)continue;
		if(id!=idx)
		{
			swap(B[id],B[idx]);
		}
		for(int j=0;j<17*N;j++)
		{
			if(idx!=j&&B[j]>>i&1)B[j]^=B[idx];
		}
		idx++;
	}
	dp[0]=true;
	for(int i=0;i<17*N;i++)
	{
		if(B[i]&&!(B[i]>>17))
		{
			for(int k=0;k<1<<17;k++)
			{
				if(dp[k])dp[k^B[i]]=true;
			}
		}
	}
	for(int i=0;i<1<<17;i++)if(dp[i])ans=max(ans,S[i]);
	cout<<sum-ans<<endl;
}
0