結果

問題 No.458 異なる素数の和
ユーザー soemonosoemono
提出日時 2020-07-25 00:40:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,653 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 80,860 KB
実行使用メモリ 180,224 KB
最終ジャッジ日時 2024-06-26 00:22:40
合計ジャッジ時間 2,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 58 ms
53,504 KB
testcase_02 AC 72 ms
69,120 KB
testcase_03 AC 12 ms
14,336 KB
testcase_04 AC 17 ms
17,536 KB
testcase_05 AC 159 ms
150,528 KB
testcase_06 AC 68 ms
65,408 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 158 ms
151,680 KB
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 188 ms
180,224 KB
testcase_12 AC 2 ms
6,948 KB
testcase_13 WA -
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 9 ms
9,600 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 64 ms
62,208 KB
testcase_28 AC 186 ms
176,384 KB
testcase_29 AC 4 ms
6,944 KB
testcase_30 AC 40 ms
39,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
#include <string>
#include <climits> // FOO_MAX, FOO_MIN
#include <cmath> 
#include <cstdlib> // abs(int)
#include <numeric>

#define roundup(n,d) ( ((n) + ((d)-1)) / (d) )
#define ll long long
#define assign_max(into, compared) (into = max((into), (compared)))
#define assign_min(into, compared) (into = min((into), (compared)))

using namespace std;

bool is_prime(int n){
    if (n <= 1) return false;
    if (n == 2) return true;
    if (n % 2 == 0) return false;
    const int limit = min(((int)sqrt(n))+1,n);
    for(int i = 3;i <= limit;i+=2){
        if (n % i == 0){
            return false;
        }
    }
    return true;
}
//[2,limit]
vector<int> primenumbers(int limit){
    vector<int> primes;
    for(int i = 2;i <= limit;i++){
        if(is_prime(i)){
            primes.push_back(i);
        }
    }
    return primes;
}


int main(void){
    int n;
    cin >> n;
    auto primes = primenumbers(n);
    const int primes_n = primes.size();
    vector<vector<int>> dp (primes_n+1, vector<int> (n+1));
    for(int i = 0;i < primes_n;i++){
        for(int j = 0;j <= n;j++){
            dp[i+1][j] = dp[i][j];
            if(j-primes[i] < 0){
                continue;
            }

            if(dp[i][j-primes[i]] == 0 && j-primes[i] != 0){
                continue;
            }

            dp[i+1][j] = max(dp[i][j], dp[i][j-primes[i]]+1); 
        }
    }

    int ans = dp[primes_n][n] >= 2 ? dp[primes_n][n] : -1;
    
    /* for(auto &v : dp){
        for(auto &i : v){
            cout << i << " ";
        }
        cout << endl;
    } */
    cout << ans << endl;
}
0