結果

問題 No.1330 Multiply or Divide
ユーザー hiro71687khiro71687k
提出日時 2023-08-23 08:00:23
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,460 bytes
コンパイル時間 5,275 ms
コンパイル使用メモリ 276,176 KB
実行使用メモリ 214,908 KB
最終ジャッジ日時 2024-12-21 09:02:42
合計ジャッジ時間 30,200 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,632 KB
testcase_01 TLE -
testcase_02 WA -
testcase_03 AC 2 ms
141,636 KB
testcase_04 AC 2 ms
13,632 KB
testcase_05 AC 2 ms
146,180 KB
testcase_06 AC 35 ms
13,636 KB
testcase_07 AC 91 ms
139,660 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 550 ms
31,468 KB
testcase_19 AC 545 ms
31,468 KB
testcase_20 AC 548 ms
31,464 KB
testcase_21 AC 557 ms
31,340 KB
testcase_22 AC 540 ms
31,344 KB
testcase_23 WA -
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 WA -
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 385 ms
24,284 KB
testcase_35 AC 84 ms
8,980 KB
testcase_36 AC 331 ms
22,872 KB
testcase_37 AC 290 ms
19,820 KB
testcase_38 AC 167 ms
13,712 KB
testcase_39 AC 107 ms
10,460 KB
testcase_40 AC 136 ms
11,824 KB
testcase_41 AC 60 ms
7,680 KB
testcase_42 AC 263 ms
18,596 KB
testcase_43 AC 321 ms
20,908 KB
testcase_44 AC 81 ms
6,816 KB
testcase_45 AC 112 ms
13,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1009999999999999990;
int main(){
    ll n,m,p;
    cin >> n >> m >> p;
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    map<ll,ll>memo;
    memo[1]=1;
    priority_queue<ll>pq;
    map<ll,ll>mm;
    pq.push(1);
    ll ans=inf;
    while (!pq.empty())
    {
        ll v=pq.top();
        pq.pop();
        mm[v]=0;
        if (v>=m)
        {
            ans=min(ans,memo[v]);
        }
        if (ans<=memo[v])
        {
            continue;
        }
        if (v%p==0)
        {
            v/=p;
            ll x=memo[v];
            if (x==0||memo[v]>memo[v*p]+1)
            {
                memo[v]=memo[v*p]+1;
                if (mm[v]==0)
                {
                    pq.push(v);
                    mm[v]++;
                }
            }
            continue;
        }
        for (ll i = 0; i < n; i++)
        {
            ll x=memo[v*a[i]];
            if (x==0||x>memo[v]+1)
            {
                memo[v*a[i]]=memo[v]+1;
                if (mm[v*a[i]]==0)
                {
                    pq.push(v*a[i]);
                    mm[v*a[i]]++;
                }
            }
        }
    }
    if (ans==inf)
    {
        cout << -1 << endl;
    }else{
        cout << ans-1 << endl;
    }
}
0