結果

問題 No.1515 Making Many Multiples
ユーザー nok0nok0
提出日時 2021-05-02 16:07:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 212,780 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-07-21 01:06:47
合計ジャッジ時間 5,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 171 ms
19,200 KB
testcase_03 AC 172 ms
19,200 KB
testcase_04 AC 168 ms
18,816 KB
testcase_05 AC 176 ms
19,072 KB
testcase_06 AC 96 ms
19,200 KB
testcase_07 AC 117 ms
19,328 KB
testcase_08 AC 70 ms
7,040 KB
testcase_09 AC 112 ms
10,752 KB
testcase_10 AC 112 ms
11,264 KB
testcase_11 AC 138 ms
14,080 KB
testcase_12 AC 91 ms
9,856 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 142 ms
15,488 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 176 ms
17,920 KB
testcase_17 AC 26 ms
11,264 KB
testcase_18 AC 20 ms
13,824 KB
testcase_19 AC 6 ms
7,936 KB
testcase_20 AC 29 ms
7,680 KB
testcase_21 AC 99 ms
18,560 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 103 ms
18,688 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 121 ms
18,816 KB
testcase_28 AC 68 ms
18,944 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

void chmax(int& x, const int y) {
	x = max(x, y);
}

#define rep(i, x) for(int i = 0; i < (x); i++)

using T = tuple<int, int, int>;
int n, K, x, y, res;
int main() {
	cin >> n >> K >> x >> y;
	x %= K, y %= K;
	vector a(n, 0);
	vector dp(vector(K, vector(K, -1)));
	vector dp2(vector(K, -1));
	for(auto& v : a) cin >> v, v %= K;

	dp[x][y] = 0;
	dp2[x] = dp2[y] = 0;

	rep(i, n) {
		queue<T> upd;
		rep(j, K) {
			for(int sum = 0; sum <= 2 * K; sum += K) {
				int k = sum - j - a[i];
				if(!(clamp(k, 0, K - 1) == k)) continue;
				auto& now = dp[j][k];
				if(now == -1) continue;
				upd.emplace(j, k, now + 1);
				upd.emplace(a[i], j, now + 1);
				upd.emplace(a[i], k, now + 1);
			}
			upd.emplace(j, a[i], dp2[j]);
		}
		while(!upd.empty()) {
			auto [j, k, val] = upd.front();
			upd.pop();
			chmax(dp[j][k], val);
			chmax(dp[k][j], val);
			chmax(dp2[j], val);
			chmax(dp2[k], val);
		}
	}

	rep(i, K) chmax(res, *max_element(dp[i].begin(), dp[i].end()));

	cout << res << '\n';

	return 0;
}
0