結果

問題 No.1330 Multiply or Divide
コンテスト
ユーザー outline
提出日時 2021-01-09 15:33:04
言語 C++17
(gcc 13.3.0 + boost 1.89.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 1,776 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,208 ms
コンパイル使用メモリ 133,384 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-06-20 01:24:38
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 51
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, m, p;
    cin >> n >> m >> p;
    vector<int> a(n);
    int amax = 0;
    vector<int> nums(40, -1);
    for(int i = 0; i < n; ++i){
        cin >> a[i];
        chmax(amax, a[i]);
        int X = a[i], cnt = 0;
        while(X % p == 0){
            X /= p;
            cnt += 1;
        }
        chmax(nums[cnt], X);
    }

    vector<ll> dp(10001);
    dp[0] = 1;
    for(int i = 0; i < 10000; ++i){
        if(dp[i] == 0)  continue;
        if(dp[i] * amax > m){
            cout << i + 1 << endl;
            return 0;
        }
        for(int j = 0; j < 40; ++j){
            if(nums[j] == -1)   continue;
            if(i + j + 1 > 10000)   continue;
            chmax(dp[i + j + 1], dp[i] * nums[j]);
        }
    }
    
    cout << -1 << endl;

    return 0;
}
0