結果
問題 | No.555 世界史のレポート |
ユーザー | 🍮かんプリン |
提出日時 | 2021-06-23 00:29:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 72 ms / 2,000 ms |
コード長 | 1,795 bytes |
コンパイル時間 | 1,919 ms |
コンパイル使用メモリ | 181,000 KB |
実行使用メモリ | 20,384 KB |
最終ジャッジ日時 | 2024-06-23 20:04:24 |
合計ジャッジ時間 | 3,733 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 62 ms
16,488 KB |
testcase_11 | AC | 69 ms
17,492 KB |
testcase_12 | AC | 62 ms
16,556 KB |
testcase_13 | AC | 52 ms
15,120 KB |
testcase_14 | AC | 60 ms
17,060 KB |
testcase_15 | AC | 58 ms
17,248 KB |
testcase_16 | AC | 48 ms
15,996 KB |
testcase_17 | AC | 52 ms
16,820 KB |
testcase_18 | AC | 57 ms
17,592 KB |
testcase_19 | AC | 72 ms
20,384 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2021.06.23 00:29:21 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; template<typename T> struct Dijkstra { private: int V; struct edge { int to; T cost; }; vector<vector<edge>> G; public: const T inf = numeric_limits<T>::max(); vector<T> d; Dijkstra() {} Dijkstra(int V) : V(V) { G.resize(V); } Dijkstra<T>& operator=(const Dijkstra<T>& obj) { this->V = obj.V; this->G = obj.G; this->d = obj.d; return *this; } void add_edge(int from, int to, T weight, bool directed = false) { G[from].push_back({to,weight}); if (!directed) G[to].push_back({from,weight}); } int add_vertex() { G.push_back(vector<edge>()); return V++; } void build(int s) { d.assign(V, inf); typedef tuple<T, int> P; priority_queue<P, vector<P>, greater<P>> pq; d[s] = 0; pq.push(P(d[s], s)); while (!pq.empty()) { P p = pq.top(); pq.pop(); int v = get<1>(p); if (d[v] < get<0>(p)) continue; for (const edge &e : G[v]) { if (d[e.to] > d[v] + e.cost) { d[e.to] = d[v] + e.cost; pq.push(P(d[e.to], e.to)); } } } } }; int main() { int n;cin >> n; int c,v;cin >> c >> v; Dijkstra<ll> g(n+1); for (int i = 1; i <= n; i++) { for (int j = 2; ; j++) { g.add_edge(i,min(j*i,n),c+v*(j-1),true); if (j*i >= n) break; } } g.build(1); cout << g.d[n] << endl; return 0; }