結果
問題 | No.937 Ultra Sword |
ユーザー | kotatsugame |
提出日時 | 2019-11-29 22:42:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 864 ms |
コンパイル使用メモリ | 67,960 KB |
実行使用メモリ | 29,900 KB |
最終ジャッジ日時 | 2024-11-21 02:35:10 |
合計ジャッジ時間 | 65,176 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
13,632 KB |
testcase_01 | AC | 10 ms
24,076 KB |
testcase_02 | AC | 15 ms
13,640 KB |
testcase_03 | AC | 16 ms
13,764 KB |
testcase_04 | AC | 15 ms
13,768 KB |
testcase_05 | TLE | - |
testcase_06 | AC | 245 ms
23,708 KB |
testcase_07 | AC | 275 ms
23,900 KB |
testcase_08 | AC | 124 ms
17,312 KB |
testcase_09 | AC | 92 ms
23,160 KB |
testcase_10 | AC | 308 ms
24,184 KB |
testcase_11 | AC | 50 ms
15,332 KB |
testcase_12 | AC | 237 ms
22,848 KB |
testcase_13 | AC | 232 ms
28,192 KB |
testcase_14 | AC | 259 ms
24,260 KB |
testcase_15 | AC | 207 ms
29,900 KB |
testcase_16 | AC | 12 ms
13,768 KB |
testcase_17 | AC | 26 ms
15,184 KB |
testcase_18 | AC | 233 ms
21,816 KB |
testcase_19 | AC | 136 ms
24,368 KB |
testcase_20 | AC | 107 ms
17,312 KB |
testcase_21 | AC | 175 ms
25,052 KB |
testcase_22 | AC | 15 ms
13,768 KB |
testcase_23 | AC | 10 ms
13,880 KB |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 2,075 ms
6,820 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | TLE | - |
testcase_39 | AC | 1,034 ms
6,820 KB |
testcase_40 | TLE | - |
testcase_41 | WA | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
コンパイルメッセージ
main.cpp:9:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 9 | main() | ^~~~
ソースコード
#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>0;i--) { int c=0; for(int j=i;j<=100000;j+=i) { S[i]+=A[j]*(long)(j/i*(i-1)); } } for(int i=0;i<34;i++) { int id=-1; for(int j=i;j<17*N;j++) { if(B[j]>>i&1) { id=j; break; } } if(id<0)break; if(id!=i) { swap(B[id],B[i]); } for(int j=0;j<17*N;j++) { if(i!=j&&B[j]>>i&1)B[j]^=B[i]; } } 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; }