結果
問題 | No.1330 Multiply or Divide |
ユーザー | hiro71687k |
提出日時 | 2023-08-23 08:03:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,673 bytes |
コンパイル時間 | 4,626 ms |
コンパイル使用メモリ | 277,060 KB |
実行使用メモリ | 236,656 KB |
最終ジャッジ日時 | 2024-06-01 05:47:10 |
合計ジャッジ時間 | 8,492 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#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]; } vector<ll>b; map<ll,ll>mmm; for (ll i = 0; i < n; i++) { if (a[i]!=1&&mmm[a[i]]==0) { b.push_back(a[i]); mmm[a[i]]=1; } } n=b.size(); a=b; map<ll,ll>memo; memo[1]=1; priority_queue<ll>pq; map<ll,ll>mm; pq.push(1); ll ans=32; 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==32) { cout << -1 << endl; }else{ cout << ans-1 << endl; } }