結果
問題 | No.774 tatyamと素数大富豪 |
ユーザー | tatyam |
提出日時 | 2018-06-21 23:49:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,971 bytes |
コンパイル時間 | 2,062 ms |
コンパイル使用メモリ | 203,492 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 17:46:40 |
合計ジャッジ時間 | 3,452 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include "bits/stdc++.h" using namespace std; typedef long long ll; #define rep(i,l,r) for(int i=(l);i<(r);i++) #define fcout cout << fixed << setprecision(10) array<int, 14> card; ll mulmod(ll a, ll b, ll mod) { ll x = 0,y = a % mod; while (b > 0) { if (b % 2 == 1) { x = (x + y) % mod; } y = (y * 2) % mod; b /= 2; } return x % mod; } /* * modular exponentiation */ ll modulo(ll base, ll exponent, ll mod) { ll x = 1; ll y = base; while (exponent > 0) { if (exponent % 2 == 1) x = (x * y) % mod; y = (y * y) % mod; exponent = exponent / 2; } return x % mod; } /* * Miller-Rabin primality test, iteration signifies the accuracy */ bool Miller(ll p,int iteration) { if (p < 2) { return false; } if (p != 2 && p % 2==0) { return false; } ll s = p - 1; while (s % 2 == 0) { s /= 2; } for (int i = 0; i < iteration; i++) { ll a = rand() % (p - 1) + 1, temp = s; ll mod = modulo(a, temp, p); while (temp != p - 1 && mod != 1 && mod != p - 1) { mod = mulmod(mod, mod, p); temp *= 2; } if (mod != p - 1 && temp % 2 == 0) { return false; } } return true; } bool is_prime(ll n){ if (n < 2) return false; if (n < 4) {cout << n; return true;} if (!(n % 2)) return false; if (!(n % 3)) return false; ll sq = sqrt(n); for(int i = 5 ;i < 64; i += 4 - i % 6 / 2){ if (sq < i) {cout << n; return true;}; if (!(n % i)) return false; } return Miller(n, 50); } ll putBack(ll a, int b){ return a * (b < 10 ? 10 : 100) + b; } bool ans(int n, ll cnt){ if(!n){ if(is_prime(cnt)) return true; else return false; } if(n == 1) rep(i, 1, 14) if(card[i]){ if(ans(n - 1, putBack(cnt, i))) return true; else return false; } for(int i = 9 ; i > 1 ; i--)if(card[i]){ card[i]--; if(ans(n - 1, putBack(cnt, i))) return true; card[i]++; } if(card[1]){ card[1]--; for(int i = 9 ; i > 3 ; i--)if(card[i]){ card[i]--; if(ans(n - 2, putBack(cnt, 10 + i))) return true; card[i]++; } card[1]++; } for(int i = 3 ; i > -1 ; i--){ if(card[10 + i]){ card[10 + i]--; if(ans(n - 1, putBack(cnt, 10 + i))) return true; card[10 + i]++; } else if(card[1]){ card[1]--; if(card[i]){ card[i]--; if(ans(n - 2, putBack(cnt, 10 + i))) return true; card[i]++; } card[1]++; } } return false; } int main(){ int n, a; cin >> n; rep(i, 0, n){ cin >> a; card[a]++; } if(!ans(n, 0))cout << -1; }