結果
問題 | No.332 数列をプレゼントに |
ユーザー | kenjiiiH |
提出日時 | 2016-03-16 19:41:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,605 bytes |
コンパイル時間 | 644 ms |
コンパイル使用メモリ | 61,600 KB |
実行使用メモリ | 53,572 KB |
最終ジャッジ日時 | 2024-10-01 08:47:22 |
合計ジャッジ時間 | 4,931 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
53,572 KB |
testcase_01 | AC | 14 ms
46,736 KB |
testcase_02 | AC | 13 ms
46,688 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 14 ms
46,900 KB |
testcase_05 | AC | 28 ms
46,720 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 30 ms
46,816 KB |
testcase_09 | TLE | - |
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 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
#include <iostream> #include <cstring> #include <vector> using namespace std; int n; long long x; long long a[100]; bool z[100]; const int psize = 100; vector<int> p; int dp[psize][101][1100]; bool is_prime(int x) { for (int i = 2; i < x; i++) if (x % i == 0) return false; return true; } void init() { for (int i = 2; p.size() < psize; i++) { if (is_prime(i)) p.push_back(i); } } bool solve() { init(); long long sum = 0; for (int i = 0; i < n; i++) sum += a[i]; if (x > sum) return false; memset(dp, -1, sizeof(dp)); for (int k = 0; k < psize; k++) { dp[k][0][0] = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < p[k]; j++) { if (dp[k][i][j] == -1) continue; dp[k][i+1][j] = dp[k][i][j]; dp[k][i+1][(j+a[i]) % p[k]] = i; } } } bool r = true; for (int k = 0; k < psize; k++) r &= dp[k][n][x % p[k]] != -1; if (r) { while (x > 0) { for (int i = 0; i < n; i++) { bool ck = true; for (int k = 0; k < psize; k++) { if (dp[k][i][(x-a[i]) % p[k]] == -1) ck = false; } if (ck) { x -= a[i]; z[i] = true; break; } } } } return r; } int main(int argc, char *argv[]) { cin >> n >> x; for (int i = 0; i < n; i++) cin >> a[i]; if (solve()) { string ret; for (int i = 0; i < n; i++) { if (z[i]) ret += 'o'; else ret += 'x'; } cout << ret << endl; } else { cout << "No" << endl; } return 0; }