結果

問題 No.719 Coprime
ユーザー snrnsidysnrnsidy
提出日時 2021-07-15 15:15:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 1,959 ms
コンパイル使用メモリ 203,116 KB
実行使用メモリ 11,848 KB
最終ジャッジ日時 2024-07-04 15:25:54
合計ジャッジ時間 25,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
11,512 KB
testcase_01 AC 9 ms
11,440 KB
testcase_02 AC 9 ms
11,736 KB
testcase_03 AC 11 ms
11,536 KB
testcase_04 AC 12 ms
11,596 KB
testcase_05 AC 13 ms
11,708 KB
testcase_06 AC 15 ms
11,636 KB
testcase_07 AC 16 ms
11,540 KB
testcase_08 AC 18 ms
11,692 KB
testcase_09 AC 19 ms
11,552 KB
testcase_10 AC 20 ms
11,532 KB
testcase_11 AC 22 ms
11,568 KB
testcase_12 AC 23 ms
11,532 KB
testcase_13 AC 24 ms
11,632 KB
testcase_14 AC 26 ms
11,540 KB
testcase_15 AC 28 ms
11,612 KB
testcase_16 AC 28 ms
11,700 KB
testcase_17 AC 29 ms
11,556 KB
testcase_18 AC 31 ms
11,680 KB
testcase_19 AC 32 ms
11,712 KB
testcase_20 AC 33 ms
11,688 KB
testcase_21 AC 36 ms
11,556 KB
testcase_22 AC 36 ms
11,732 KB
testcase_23 AC 37 ms
11,684 KB
testcase_24 AC 39 ms
11,580 KB
testcase_25 AC 41 ms
11,564 KB
testcase_26 AC 42 ms
11,552 KB
testcase_27 AC 43 ms
11,488 KB
testcase_28 AC 45 ms
11,544 KB
testcase_29 AC 46 ms
11,672 KB
testcase_30 AC 47 ms
11,636 KB
testcase_31 AC 48 ms
11,524 KB
testcase_32 AC 49 ms
11,704 KB
testcase_33 AC 52 ms
11,560 KB
testcase_34 AC 53 ms
11,588 KB
testcase_35 AC 54 ms
11,604 KB
testcase_36 AC 55 ms
11,644 KB
testcase_37 AC 56 ms
11,552 KB
testcase_38 AC 56 ms
11,552 KB
testcase_39 AC 58 ms
11,512 KB
testcase_40 AC 58 ms
11,600 KB
testcase_41 AC 84 ms
11,592 KB
testcase_42 AC 93 ms
11,596 KB
testcase_43 AC 165 ms
11,496 KB
testcase_44 AC 192 ms
11,572 KB
testcase_45 AC 206 ms
11,580 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

vector <int> prime = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71};
int dp[2][1<<20];
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int N;
	
	cin >> N;
	
	for(int i=0;i<2;i++)
	{
		for(int j=0;j<(1<<20);j++)
		{
			dp[i][j] = -1e9;
		}
	}
	
	dp[1][0] = 0;
	
	for(int i=1;i<N;i++)
	{
		memcpy(dp[0],dp[1],sizeof(dp[1]));
		fill(dp[1],dp[1]+(1<<20),-1e9);
		int bitmask = 0;
		for(int j=0;j<20;j++)
		{
			if(((i+1)%prime[j])==0)
			{
				bitmask += (1<<j);
			}
		}
		//cout << i+1 << ' ' << bitmask << '\n';
		for(int j=0;j<(1<<20);j++)
		{
			if(dp[0][j]<=-1e9) continue;
			dp[1][j] = max(dp[1][j],dp[0][j]);
			if((j&bitmask)) continue;
			dp[1][bitmask + j] = max(dp[1][bitmask + j],dp[0][j] + (i+1));
		}
	}
	
	int res = 0;
	
	for(int j=0;j<(1<<20);j++)
	{
		res = max(res,dp[1][j]);
	}
	
	cout << res << '\n';
	
	return 0;
}
0