結果
問題 | No.3105 Міжнародний підрядок саміт |
ユーザー | fura |
提出日時 | 2023-09-15 16:35:22 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,122 bytes |
コンパイル時間 | 3,030 ms |
コンパイル使用メモリ | 246,460 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 18:59:06 |
合計ジャッジ時間 | 6,024 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1,379 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1,386 ms
5,376 KB |
testcase_04 | AC | 10 ms
5,376 KB |
ソースコード
// すべての入力は素数なので, 素数列に含まれる等差数列を調べる. // https://en.wikipedia.org/wiki/Primes_in_arithmetic_progression#Minimal_primes_in_AP // を見ると, N も素数であることから, A_{N-1} <= 10^9 を満たすためには N <= 13 でないといけないことが分かる. #include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; using lint = long long; const lint INF = 1LL << 61; void solve() { lint n, p; cin >> n >> p; vector<lint> A(n); rep (i, n) cin >> A[i]; vector<lint> sum(1 << n); rep (S, 1 << n) { rep (i, n) { if (S >> i & 1) sum[S] += A[i]; } } lint ans = 0; rep (S, 1 << n) { if (S == 0) continue; lint evenness = INF; for (int T = S;; T = (T - 1) & S) { evenness = min(evenness, abs(sum[T] - sum[S & ~T])); if (T == 0) break; } ans = (ans + evenness) % p; } cout << ans << "\n"; } int main() { int t; cin >> t; rep (_, t) { solve(); } return 0; }