結果

問題 No.1330 Multiply or Divide
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-02 02:52:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,201 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 205,916 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-02 02:53:07
合計ジャッジ時間 6,929 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 36 ms
6,676 KB
testcase_07 WA -
testcase_08 AC 85 ms
6,676 KB
testcase_09 AC 89 ms
6,676 KB
testcase_10 AC 84 ms
6,676 KB
testcase_11 AC 83 ms
6,676 KB
testcase_12 AC 85 ms
6,676 KB
testcase_13 AC 1 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
testcase_21 AC 2 ms
6,676 KB
testcase_22 AC 2 ms
6,676 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,676 KB
testcase_25 AC 2 ms
6,676 KB
testcase_26 AC 2 ms
6,676 KB
testcase_27 AC 2 ms
6,676 KB
testcase_28 AC 2 ms
6,676 KB
testcase_29 AC 2 ms
6,676 KB
testcase_30 AC 2 ms
6,676 KB
testcase_31 AC 2 ms
6,676 KB
testcase_32 AC 1 ms
6,676 KB
testcase_33 WA -
testcase_34 AC 2 ms
6,676 KB
testcase_35 AC 2 ms
6,676 KB
testcase_36 AC 2 ms
6,676 KB
testcase_37 AC 1 ms
6,676 KB
testcase_38 AC 2 ms
6,676 KB
testcase_39 AC 2 ms
6,676 KB
testcase_40 AC 2 ms
6,676 KB
testcase_41 AC 2 ms
6,676 KB
testcase_42 AC 2 ms
6,676 KB
testcase_43 AC 2 ms
6,676 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace atcoder;
using namespace std;
using ll = long long;
using mint = modint998244353;
int main() {
	int N;ll M, P;cin >> N >> M >> P;
	int K = 35;
	vector<ll> A(K + 1, 0);
	bool ret = false;
	for (int i = 1;i <= N;i++) {
		ll a;cin >> a;
		if (a > M) {
			cout << 1 << endl;
			return 0;
		}
		int c = 0;
		while (a % P == 0) {
			c++;
			a /= P;
		}
		A[c] = max(A[c], a);
		if (a != 1) {
			ret = true;
		}
	}
	if (!ret) {
		cout << -1 << endl;
		return 0;
	}
	vector<ll> dp(K + 1, 1);
	ll ep = 1;
	for (int i = 0;i <= K;i++) {
		if (A[i] == 0) {
			continue;
		}
		ll x = A[i];
		ll y = ep * x;
		vector<ll> ndp(K + 1, 1);
		for (int j = 0;j <= K;j++) {
			//iをつかわない or dp[j] = over;
			if (dp[j] == M + 1) {
				ndp[j] = M + 1;
				continue;
			} else {
				ndp[j] = max(ndp[j], dp[j]);
			}
			//iをつかう
			if (dp[j] * y > M) {
				if (j != K) ndp[j + 1] = max(ndp[j], M + 1);
			} else {
				if (j + i + 1 <= K) ndp[j+i+1] = max(ndp[j+i+1], dp[j] * x);
			}
		}
		swap(dp, ndp);
		ep *= P;
	}
	for (int i = 1;i <= K;i++) {
		if (dp[i] == M + 1) {
			cout << i << endl;
			return 0;
		}
	}
	cout << -1 << endl;
	
}
0