結果
問題 | No.2739 Time is money |
ユーザー | Yusuke.T |
提出日時 | 2024-04-21 02:53:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,950 ms / 2,000 ms |
コード長 | 3,363 bytes |
コンパイル時間 | 3,402 ms |
コンパイル使用メモリ | 149,128 KB |
実行使用メモリ | 50,816 KB |
最終ジャッジ日時 | 2024-10-13 01:17:47 |
合計ジャッジ時間 | 21,754 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 377 ms
28,800 KB |
testcase_03 | AC | 883 ms
38,868 KB |
testcase_04 | AC | 369 ms
27,904 KB |
testcase_05 | AC | 534 ms
29,168 KB |
testcase_06 | AC | 1,197 ms
39,112 KB |
testcase_07 | AC | 1,535 ms
49,152 KB |
testcase_08 | AC | 943 ms
48,744 KB |
testcase_09 | AC | 1,011 ms
47,872 KB |
testcase_10 | AC | 743 ms
47,232 KB |
testcase_11 | AC | 1,950 ms
48,836 KB |
testcase_12 | AC | 1,160 ms
49,792 KB |
testcase_13 | AC | 1,167 ms
49,792 KB |
testcase_14 | AC | 1,129 ms
50,816 KB |
testcase_15 | AC | 832 ms
42,768 KB |
testcase_16 | AC | 329 ms
42,496 KB |
testcase_17 | AC | 1,941 ms
47,900 KB |
testcase_18 | AC | 1,930 ms
47,920 KB |
testcase_19 | AC | 682 ms
42,032 KB |
ソースコード
#include <iostream> #include <algorithm> #include <math.h> #include <vector> #include <map> #include <stack> #include <queue> #include <deque> #include <set> #include <string> #include <unordered_map> #include <unordered_set> #include <numeric> #include <iomanip> constexpr int MAX_INT = 2147483647; constexpr int MIN_INT = -2147483648; #define rep(n, a, b) for (int (n) = (a); (n) < (b); (n)++) #define rrep(n, a, b) for (int (n) = (a); (n) >= (b); (n)--) #define llrep(n, a, b) for (long long (n) = (a); (n) < (b); (n)++) #define llrrep(n, a, b) for (long long (n) = (a); (n) >= (b); (n)--) #define itrAll(x) (x).begin(), (x).end() #define inputvec(v) for (auto& x : v) {std::cin >> x;} using namespace std; using uint = unsigned int; using ushort = unsigned short; using byte = unsigned char; using ll = long long; using ull = unsigned long long; using ldouble = long double; using ipair = pair<int, int>; using llpair = pair<long long, long long>; template<typename T> void chmin(T& v1, T v2) { if (v1 > v2) v1 = v2; } template<typename T> void chmax(T& v1, T v2) { if (v1 < v2) v1 = v2; } class union_find { private: vector<size_t> parent; public: union_find(size_t N) { parent = vector<size_t>(N); for (size_t i = 0; i < N; i++) { parent[i] = i; } } int get_root(size_t x) { if (parent[x] == x) { return x; } else { return (parent[x] = get_root(parent[x])); } } bool unite(size_t x, size_t y) { auto rx = get_root(x), ry = get_root(y); if (rx == ry) { return false; } else { parent[rx] = ry; return true; } } bool has_same_parent(size_t x, size_t y) { return get_root(x) == get_root(y); } }; int N, M, X; struct comparer { bool operator()(tuple<int, ll, ll>& l, tuple<int, ll, ll>& r) { return (get<1>(l) * X + get<2>(l)) > (get<1>(r) * X + get<2>(r)); } }; int main() { cin >> N >> M >> X; map<int, map<int, llpair>> cost; // { 移動にかかる時間, 通行料 } union_find uf(N); // 到達可能性の確認用 rep(_, 0, M) { int ui, vi, ci, ti; cin >> ui >> vi >> ci >> ti; ui--, vi--; ipair p = { ti,ci }; cost[ui][vi] = p; cost[vi][ui] = p; uf.unite(ui, vi); } if (!uf.has_same_parent(0, N - 1)) { // 到達不能 cout << -1 << endl; return 0; } set<int> visited; priority_queue<tuple<int, ll, ll>, vector<tuple<int, ll, ll>>, comparer> Q; // { 位置, 経過時間, かかったお金 } Q.push({ 0,0LL,0LL }); while (Q.size()) { auto [now, elapsed, spend] = Q.top(); Q.pop(); visited.insert(now); if (now == N - 1) { cout << (elapsed + (int)ceil((double)spend / X)) << endl; return 0; } if (cost.find(now) != cost.end()) { vector<int> tmp(cost[now].size()); for (auto& [nxt, tc] : cost[now]) { if (visited.find(nxt) == visited.end()) { Q.push({ nxt, elapsed + tc.first, spend + tc.second }); } else { tmp.push_back(nxt); } } for (auto key : tmp) { // 計算時間短縮......? cost[now].erase(key); cost[key].erase(now); } } } return 0; }