結果
問題 | No.458 異なる素数の和 |
ユーザー | Shivam062004 |
提出日時 | 2024-07-08 07:29:05 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,704 bytes |
コンパイル時間 | 7,538 ms |
コンパイル使用メモリ | 301,828 KB |
実行使用メモリ | 817,920 KB |
最終ジャッジ日時 | 2024-07-08 07:29:17 |
合計ジャッジ時間 | 9,154 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
#include<bits/stdc++.h> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; struct custom_hash { static uint64_t splitmix64(uint64_t x) { x += 0x9e3779b97f4a7c15; x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9; x = (x ^ (x >> 27)) * 0x94d049bb133111eb; return x ^ (x >> 31); } size_t operator()(uint64_t x) const { static const uint64_t FIXED_RANDOM = chrono::steady_clock::now().time_since_epoch().count(); return splitmix64(x + FIXED_RANDOM); } }; typedef tree<int, null_type, greater<int>, rb_tree_tag, tree_order_statistics_node_update> pbds; // find_by_order, order_of_key //find by order-> element at ith idx(starting from 0)//gives iterator to that index//if not present *it gives 0 //order of key-> number of element less than a number #define int long long int // #define ll long long int #define loop(s, e) for(int i = s; i < e; i++) #define rloop(e, s) for(int i = e; i>= s; i--) #define v vector<int> // #define vll vector<long long int> #define printyes cout<<"YES\n" #define printno cout<<"NO\n" //COMMENT THIS FOR INTERACTIVE PROBLEMS............... #define endl '\n' #define mod 1000000007 #define pinf 1e18 #define ninf -1e18 #define printvec(arr) cout<<#arr<<"=> [ ";for(int i = 0; i < arr.size(); i++){cout<<arr[i]<<" ";}cout<<"]"<<endl; #define dbg(x) cout<<"value of "<<#x<<" is => "<<x<<endl; #define all(x) x.begin(), x.end() #define vpii vector<pair<int, int>> #define pii pair<int,int> #define pll pair<ll, ll> #define ff first #define ss second #define pb push_back #define vpll vector<pll> #define here(i) cout<<"here "<<i<<" "<<endl; #define rt return; #define mx max_element #define mn min_element #define asum accumulate int delrow[4] = {-1,0,1,0}; int delcol[4] = {0,1,0,-1}; void printv(v& ans) { for(auto it: ans)cout<<it<<" "; cout<<endl; } int setBit(int n, int bitNo) { n = (n|(1LL<<bitNo)); return n; } int currBit(int n, int bitNo) { return ((n&(1ll<<bitNo)) == 0)?0:1; } int unSetBit(int n, int bitNo) { n = (n&(~(1ll<<bitNo))); return n; } //*************************************************CHECK THE CONSTRAINTS**********************************************************// int f(int a, int b) { if(b == 0)return 1; int res = f(a, b/2); if(b%2 != 0) { return (((res)%mod * (res)%mod)%mod * a)%mod; } else { return ((res)%mod * (res)%mod)%mod; } } vector<bool> sieve(int n) { vector<bool> prime(n+1, 1); prime[0] = 0; prime[1] = 0; for(int i = 2; i*i <= n; i++) { if(prime[i] == 1) { for(int j = i*i; j <= n; j += i) { prime[j] = 0; } } } return prime; } void pikachu(int tt, int tc) { int n; cin>>n; vector<bool> prime = sieve(n); vector<vector<int>> dp(n+1, vector<int>(n+1, -1e17)); for(int i = 0; i < n+1; i++)dp[0][i] = 0; for(int i = 2; i < n+1; i++) { for(int j = 2; j <= i; j++) { if(prime[j] == 1) { for(int k = 0; k < j; k++) { // dbg(i); // dbg(j); // dbg(k); if((k == 0 || prime[k] == 1) && dp[i-j][k] != -1e17) { dp[i][j] = max(dp[i][j], 1+dp[i-j][k]); } } } } } int ans = -1e18; for(int i = 0; i < n+1; i++)ans = max(ans, dp[n][i]); if(ans == -1e17) ans = -1; cout<<ans<<endl; } int32_t main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #ifndef ONLINE_JUDGE freopen("input.txt", "r", stdin); freopen("output.txt", "w", stdout); #endif int gsBall = 1; // cin>>gsBall; int tt = gsBall; int tc = 1; while(gsBall--) { pikachu(tt, tc); tc++; } return 0; }