結果

問題 No.937 Ultra Sword
ユーザー kotatsugamekotatsugame
提出日時 2019-11-29 22:46:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 890 bytes
コンパイル時間 900 ms
コンパイル使用メモリ 68,568 KB
実行使用メモリ 17,912 KB
最終ジャッジ日時 2024-11-21 02:37:59
合計ジャッジ時間 6,899 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,820 KB
testcase_01 AC 8 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 8 ms
6,816 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 207 ms
16,224 KB
testcase_07 AC 232 ms
16,120 KB
testcase_08 AC 106 ms
10,296 KB
testcase_09 AC 80 ms
8,624 KB
testcase_10 AC 258 ms
17,328 KB
testcase_11 AC 45 ms
7,796 KB
testcase_12 AC 202 ms
16,816 KB
testcase_13 AC 196 ms
15,996 KB
testcase_14 AC 221 ms
17,416 KB
testcase_15 AC 176 ms
14,580 KB
testcase_16 AC 10 ms
6,816 KB
testcase_17 AC 22 ms
6,996 KB
testcase_18 AC 198 ms
16,252 KB
testcase_19 AC 122 ms
10,712 KB
testcase_20 AC 91 ms
11,412 KB
testcase_21 AC 149 ms
17,912 KB
testcase_22 WA -
testcase_23 AC 9 ms
6,820 KB
testcase_24 AC 107 ms
17,612 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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=0;i<34;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