結果
問題 | No.1515 Making Many Multiples |
ユーザー | nok0 |
提出日時 | 2021-04-30 10:41:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 655 bytes |
コンパイル時間 | 1,953 ms |
コンパイル使用メモリ | 213,276 KB |
実行使用メモリ | 18,976 KB |
最終ジャッジ日時 | 2024-07-18 09:06:28 |
合計ジャッジ時間 | 5,590 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,760 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | TLE | - |
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> using namespace std; void chmax(int& x, const int y) { x = max(x, y); } int n, k, x, y, res; int main() { cin >> n >> k >> x >> y; x %= k, y %= k; vector a(n, 0); for(auto& v : a) cin >> v, v %= k; map<pair<int, int>, int> dp; dp[{x, y}] = 0; for(const auto& v : a) { map<pair<int, int>, int> ndp; for(const auto& [key, val] : dp) { const auto [z, w] = key; int nxt = val + (v + z + w == 0 or v + z + w == k or v + z + w == 2 * k); chmax(ndp[{v, w}], nxt); chmax(ndp[{v, z}], nxt); chmax(ndp[{z, w}], nxt); } dp = ndp; } for(const auto& [key, val] : dp) chmax(res, val); cout << res << '\n'; }