結果
問題 | No.1737 One to N |
ユーザー | 👑 emthrm |
提出日時 | 2021-11-12 21:34:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 340 ms / 2,000 ms |
コード長 | 1,332 bytes |
コンパイル時間 | 1,848 ms |
コンパイル使用メモリ | 208,704 KB |
実行使用メモリ | 21,700 KB |
最終ジャッジ日時 | 2024-11-25 17:20:16 |
合計ジャッジ時間 | 6,434 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 333 ms
21,088 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 52 ms
8,772 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 27 ms
6,820 KB |
testcase_05 | AC | 336 ms
21,660 KB |
testcase_06 | AC | 340 ms
21,588 KB |
testcase_07 | AC | 299 ms
21,280 KB |
testcase_08 | AC | 26 ms
6,816 KB |
testcase_09 | AC | 35 ms
6,820 KB |
testcase_10 | AC | 119 ms
13,092 KB |
testcase_11 | AC | 26 ms
6,820 KB |
testcase_12 | AC | 76 ms
8,860 KB |
testcase_13 | AC | 143 ms
12,736 KB |
testcase_14 | AC | 222 ms
21,700 KB |
testcase_15 | AC | 257 ms
21,088 KB |
testcase_16 | AC | 95 ms
12,080 KB |
testcase_17 | AC | 113 ms
13,016 KB |
testcase_18 | AC | 113 ms
13,124 KB |
testcase_19 | AC | 19 ms
6,816 KB |
testcase_20 | AC | 21 ms
6,816 KB |
testcase_21 | AC | 176 ms
13,352 KB |
testcase_22 | AC | 24 ms
6,816 KB |
testcase_23 | AC | 181 ms
12,248 KB |
testcase_24 | AC | 141 ms
12,524 KB |
testcase_25 | AC | 84 ms
7,984 KB |
testcase_26 | AC | 41 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 121 ms
13,724 KB |
testcase_29 | AC | 2 ms
6,816 KB |
ソースコード
#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; }