結果

問題 No.1737 One to N
ユーザー 👑 emthrmemthrm
提出日時 2021-11-12 21:34:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 1,332 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 206,252 KB
実行使用メモリ 22,316 KB
最終ジャッジ日時 2023-08-17 00:13:13
合計ジャッジ時間 8,120 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 388 ms
22,316 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 58 ms
8,620 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 29 ms
5,264 KB
testcase_05 AC 389 ms
21,668 KB
testcase_06 AC 383 ms
20,944 KB
testcase_07 AC 353 ms
21,704 KB
testcase_08 AC 30 ms
5,192 KB
testcase_09 AC 36 ms
5,192 KB
testcase_10 AC 138 ms
13,616 KB
testcase_11 AC 30 ms
5,220 KB
testcase_12 AC 84 ms
7,660 KB
testcase_13 AC 163 ms
12,056 KB
testcase_14 AC 261 ms
21,140 KB
testcase_15 AC 300 ms
20,672 KB
testcase_16 AC 109 ms
12,672 KB
testcase_17 AC 131 ms
12,820 KB
testcase_18 AC 130 ms
13,132 KB
testcase_19 AC 22 ms
4,380 KB
testcase_20 AC 24 ms
4,380 KB
testcase_21 AC 203 ms
12,336 KB
testcase_22 AC 27 ms
5,136 KB
testcase_23 AC 211 ms
12,604 KB
testcase_24 AC 159 ms
12,376 KB
testcase_25 AC 88 ms
7,504 KB
testcase_26 AC 44 ms
5,332 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 139 ms
13,216 KB
testcase_29 AC 2 ms
4,376 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