結果

問題 No.1330 Multiply or Divide
ユーザー leaf_1415leaf_1415
提出日時 2021-01-09 02:01:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 85,660 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-04-28 07:59:51
合計ジャッジ時間 3,002 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 25 ms
5,632 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 22 ms
5,504 KB
testcase_07 AC 92 ms
5,632 KB
testcase_08 AC 46 ms
5,504 KB
testcase_09 AC 50 ms
5,504 KB
testcase_10 AC 46 ms
5,504 KB
testcase_11 AC 42 ms
5,504 KB
testcase_12 AC 47 ms
5,504 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 38 ms
5,376 KB
testcase_21 AC 39 ms
5,376 KB
testcase_22 AC 39 ms
5,376 KB
testcase_23 AC 32 ms
5,632 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 28 ms
5,376 KB
testcase_35 AC 8 ms
5,376 KB
testcase_36 AC 25 ms
5,376 KB
testcase_37 AC 24 ms
5,376 KB
testcase_38 AC 16 ms
5,376 KB
testcase_39 AC 10 ms
5,376 KB
testcase_40 AC 12 ms
5,376 KB
testcase_41 AC 6 ms
5,376 KB
testcase_42 AC 21 ms
5,376 KB
testcase_43 AC 24 ms
5,376 KB
testcase_44 AC 22 ms
5,504 KB
testcase_45 AC 22 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;

ll n, m, p;
ll a[200005];
ll b[35];
ll dp[35][2005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> m >> p;
	m++;
	rep(i, 1, n) cin >> a[i];
	sort(a+1, a+n+1);
	
	if(m == 1){
		cout << 0 << endl;
		return 0;
	}
	if(a[n] >= m){
		cout << 1 << endl;
		return 0;
	}
	m = (m+a[n]-1)/a[n];
	
	ll ans = inf;
	rep(i, 1, n){
		ll cost = 0, mul = a[i];
		for(; mul % p == 0; mul /= p) cost++;
		chmax(b[cost+1], mul);
	}
	
	dp[0][0] = 1;
	rep(i, 0, 32){
		rep(j, 0, 2000){
			chmax(dp[i+1][j], dp[i][j]);
			if(j+i+1 <= 2000) chmax(dp[i][j+i+1], min(m, dp[i][j]*b[i+1]));
		}
	}
	rep(j, 0, 2000){
		if(dp[33][j] >= m){
			cout << j+1 << endl;
			return 0;
		}
	}
	cout << -1 << endl;
	
	return 0;
}
0