結果

問題 No.555 世界史のレポート
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2021-06-23 00:29:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,795 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 179,292 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2023-09-06 00:56:47
合計ジャッジ時間 3,300 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 49 ms
16,976 KB
testcase_11 AC 57 ms
17,788 KB
testcase_12 AC 52 ms
17,492 KB
testcase_13 AC 46 ms
16,324 KB
testcase_14 AC 60 ms
17,052 KB
testcase_15 AC 58 ms
17,424 KB
testcase_16 AC 50 ms
15,696 KB
testcase_17 AC 53 ms
16,940 KB
testcase_18 AC 60 ms
17,548 KB
testcase_19 AC 77 ms
20,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
 *   @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;
}
0