結果
問題 | No.1812 Uribo Road |
ユーザー | trineutron |
提出日時 | 2022-01-14 22:47:40 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,510 bytes |
コンパイル時間 | 3,297 ms |
コンパイル使用メモリ | 247,988 KB |
実行使用メモリ | 814,724 KB |
最終ジャッジ日時 | 2024-11-20 13:14:29 |
合計ジャッジ時間 | 12,661 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using edge = pair<int, int>; int main() { int n, m, k; cin >> n >> m >> k; vector<bool> must(m); for (int i = 0; i < k; i++) { int r; cin >> r; r--; must.at(r) = true; } const int s = 1 << k; vector<int64_t> to[n * s]; return 0; /* int idx = 0; for (int i = 0; i < m; i++) { int a, b, c; cin >> a >> b >> c; a--; b--; for (int j = 0; j < s; j++) { if (must.at(i)) { to[a * s + j].emplace_back(b * s + (j | (1 << idx)), c); to[b * s + j].emplace_back(a * s + (j | (1 << idx)), c); } else { to[a * s + j].emplace_back(b * s + j, c); to[b * s + j].emplace_back(a * s + j, c); } } if (must.at(i)) { idx++; } } vector<int> dist(n * s, 2e9); priority_queue<edge, vector<edge>, greater<edge>> q; q.emplace(0, 0); while (not q.empty()) { auto [d0, v] = q.top(); q.pop(); if (d0 >= dist.at(v)) { continue; } dist.at(v) = d0; for (auto &&[c, d_edge] : to[v]) { if (d0 + d_edge >= dist.at(c)) { continue; } q.emplace(d0 + d_edge, c); } } cout << dist.back() << endl; return 0;*/ }