結果
問題 | No.1601 With Animals into Institute |
ユーザー | seven_three |
提出日時 | 2021-07-10 18:16:15 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,447 bytes |
コンパイル時間 | 1,022 ms |
コンパイル使用メモリ | 113,708 KB |
実行使用メモリ | 23,388 KB |
最終ジャッジ日時 | 2024-07-02 02:43:20 |
合計ジャッジ時間 | 16,212 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,504 KB |
testcase_01 | AC | 4 ms
5,632 KB |
testcase_02 | AC | 4 ms
5,504 KB |
testcase_03 | AC | 10 ms
5,888 KB |
testcase_04 | AC | 10 ms
5,888 KB |
testcase_05 | AC | 11 ms
5,888 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 10 ms
5,888 KB |
testcase_19 | AC | 11 ms
6,016 KB |
testcase_20 | AC | 11 ms
5,888 KB |
testcase_21 | AC | 11 ms
5,888 KB |
testcase_22 | AC | 11 ms
6,016 KB |
testcase_23 | AC | 11 ms
5,888 KB |
testcase_24 | AC | 10 ms
5,888 KB |
testcase_25 | AC | 11 ms
6,016 KB |
testcase_26 | AC | 11 ms
6,016 KB |
testcase_27 | AC | 3 ms
5,504 KB |
testcase_28 | AC | 3 ms
5,632 KB |
testcase_29 | AC | 4 ms
5,504 KB |
testcase_30 | AC | 4 ms
5,632 KB |
testcase_31 | AC | 4 ms
5,504 KB |
testcase_32 | AC | 4 ms
5,504 KB |
testcase_33 | AC | 3 ms
5,504 KB |
testcase_34 | AC | 3 ms
5,504 KB |
testcase_35 | AC | 4 ms
5,504 KB |
testcase_36 | AC | 4 ms
5,504 KB |
testcase_37 | AC | 3 ms
5,504 KB |
testcase_38 | AC | 4 ms
5,504 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; long long v[100010][2]; vector<vector<tuple<int, int, int>>> vec(100010); long long inf = 1000000000000007; int main() { long long n, m; cin >> n >> m; for (int i = 1; i <= n; i++) { for (int j = 0; j < 2; j++) { v[i][j] = inf; } } for (int i = 0; i < m; i++) { long long a, b, c, x; cin >> a >> b >> c >> x; vec[a].emplace_back(make_tuple(b, c, x)); vec[b].emplace_back(make_tuple(a, c, x)); } v[n][0] = 0; priority_queue<tuple<long long, long long, int>,vector<tuple<long long,long long,int>>,greater<tuple<long long,long long,int>>> que; que.push(make_tuple(0, n, 0)); while (!que.empty()) { tuple<int, int, int> t = que.top(); long long y = get<0>(t); long long x = get<1>(t); int z = get<2>(t); que.pop(); if (v[x][0] < y && v[x][1] < y) { continue; } for (int i = 0; i < vec[x].size(); i++) { tuple<int, long long, long long> t1 = vec[x][i]; long long x1 = get<0>(t1); long long y1 = get<1>(t1); int z1 = get<2>(t1); if (v[x1][z|z1] > y + y1) { v[x1][z|z1] = y + y1; que.push(make_tuple(v[x1][z|z1], x1, z|z1)); } } } for (int i = 1; i < n; i++) { cout << v[i][1] << endl; } }