結果

問題 No.458 異なる素数の和
ユーザー aa
提出日時 2018-06-10 04:10:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,025 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 97,472 KB
実行使用メモリ 199,184 KB
最終ジャッジ日時 2023-09-13 02:32:17
合計ジャッジ時間 7,256 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
199,100 KB
testcase_01 AC 145 ms
198,972 KB
testcase_02 AC 145 ms
198,964 KB
testcase_03 AC 144 ms
199,104 KB
testcase_04 AC 144 ms
198,960 KB
testcase_05 AC 145 ms
199,184 KB
testcase_06 AC 144 ms
198,900 KB
testcase_07 AC 144 ms
198,912 KB
testcase_08 AC 144 ms
198,972 KB
testcase_09 AC 144 ms
198,904 KB
testcase_10 AC 144 ms
198,908 KB
testcase_11 AC 145 ms
198,904 KB
testcase_12 WA -
testcase_13 AC 144 ms
199,024 KB
testcase_14 AC 145 ms
198,904 KB
testcase_15 WA -
testcase_16 AC 145 ms
199,104 KB
testcase_17 AC 145 ms
198,952 KB
testcase_18 AC 144 ms
198,912 KB
testcase_19 AC 145 ms
199,108 KB
testcase_20 AC 145 ms
198,916 KB
testcase_21 AC 145 ms
198,920 KB
testcase_22 AC 144 ms
198,920 KB
testcase_23 AC 145 ms
198,956 KB
testcase_24 AC 145 ms
198,912 KB
testcase_25 AC 144 ms
199,024 KB
testcase_26 AC 146 ms
198,960 KB
testcase_27 AC 145 ms
198,960 KB
testcase_28 AC 145 ms
198,900 KB
testcase_29 WA -
testcase_30 AC 145 ms
198,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <climits>
#include <cmath>
#include <complex>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <queue>
#include <bitset>
#include <algorithm>
#include <numeric>
#include <functional>
#include <cassert>
#include <iomanip>
using namespace std;

#define Rep(b, e, i) for(int i = b; i <= e; i++)
#define Repr(e, b, i) for(int i = e; i >= b; i--)
#define rep(n, i) Rep(0, n-1, i)
#define repr(n, i) Repr(n-1, 0, i)
#define all(v) (v).begin(), (v).end()
#define pb(v) push_back(v)
#define uniq(v) (v).erase(unique(all(v)),(v).end())
#define bitcnt(x) __builtin_popcount(x)
#define fst first
#define snd second
#define Pqaz(T) priority_queue<T,vector<T>,greater<T>>
#define Pqza(T) priority_queue<T>
#define put(x) cout << x;
#define putsp(x) cout << x << ' ';
#define putln(x) cout << x << endl;
#define ENJYU std::ios::sync_with_stdio(false);std::cin.tie(0);

typedef long long ll;
typedef pair<ll, ll> llP;
typedef pair<int, int> intP;
typedef complex<double> comp;

//vector の中身を出力
template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

const int MAX = 20020;

bool prime[MAX];
int dp[2500][MAX];

void solve(void){
	int N;
	cin >> N;

	memset(prime, true, sizeof(prime));
	prime[0] = prime[1] = false;

	for (int i = 2; i < MAX; i++)
	{
		if (!prime[i]) continue;
		for (int j = 2; i * j < MAX; j++)
		{
			prime[i*j] = false;
		}
	}

	vector <int> ps;
	rep(MAX, i)
	{
		if (prime[i]) ps.pb(i);
	}

	int l = (int)ps.size();

	//dp[i][j] := i版めまでのj個使って

	memset(dp, -1, sizeof(dp));
	dp[0][0] = 0;

	rep(l, i) rep(MAX, j)
	{
		dp[i+1][j] = max(dp[i+1][j], dp[i][j]);

		if (ps[i] + j < MAX)
		{
			dp[i+1][j+ps[i]] = max(dp[i][j] + 1, dp[i+1][j+ps[i]]);
		}

	}

	cout << (dp[l][N] >= 0 ? dp[l][N] : -1) << endl;

}

int main(void){
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0