結果

問題 No.1737 One to N
ユーザー 👑 emthrmemthrm
提出日時 2021-11-12 21:34:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 207,388 KB
実行使用メモリ 21,976 KB
最終ジャッジ日時 2024-05-04 07:36:11
合計ジャッジ時間 6,356 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
21,976 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 49 ms
8,128 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 333 ms
21,764 KB
testcase_06 AC 333 ms
21,572 KB
testcase_07 AC 302 ms
21,120 KB
testcase_08 AC 27 ms
6,940 KB
testcase_09 AC 32 ms
6,944 KB
testcase_10 AC 117 ms
12,692 KB
testcase_11 AC 25 ms
6,944 KB
testcase_12 AC 73 ms
8,220 KB
testcase_13 AC 141 ms
13,072 KB
testcase_14 AC 224 ms
20,608 KB
testcase_15 AC 257 ms
21,264 KB
testcase_16 AC 97 ms
12,984 KB
testcase_17 AC 113 ms
13,236 KB
testcase_18 AC 113 ms
12,404 KB
testcase_19 AC 19 ms
6,940 KB
testcase_20 AC 20 ms
6,940 KB
testcase_21 AC 173 ms
12,308 KB
testcase_22 AC 23 ms
6,940 KB
testcase_23 AC 179 ms
12,840 KB
testcase_24 AC 139 ms
12,072 KB
testcase_25 AC 77 ms
8,748 KB
testcase_26 AC 38 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 118 ms
12,740 KB
testcase_29 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 1000000007;
// constexpr int MOD = 998244353;
constexpr int DY[]{1, 0, -1, 0}, DX[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1}, DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n; cin >> n;
  vector<int> ans(n + 1, INF);
  ans[1] = 0;
  priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> que;
  que.emplace(0, 1);
  while (!que.empty()) {
    auto [cost, x] = que.top(); que.pop();
    if (cost > ans[x]) continue;
    for (int k = 2; k * x <= n; ++k) {
      if (chmin(ans[k * x], ans[x] + k)) que.emplace(ans[k * x], k * x);
    }
  }
  cout << ans[n] << '\n';
  return 0;
}
0