結果
問題 | No.2630 Colorful Vertices and Cheapest Paths |
ユーザー | Koi |
提出日時 | 2024-02-16 23:14:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,066 bytes |
コンパイル時間 | 2,385 ms |
コンパイル使用メモリ | 214,532 KB |
実行使用メモリ | 18,836 KB |
最終ジャッジ日時 | 2024-09-28 21:54:35 |
合計ジャッジ時間 | 7,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 5 ms
16,300 KB |
testcase_04 | AC | 5 ms
16,228 KB |
testcase_05 | AC | 5 ms
16,336 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 | AC | 427 ms
16,700 KB |
testcase_16 | AC | 431 ms
18,560 KB |
testcase_17 | AC | 424 ms
16,992 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long int N; int M; int C[100000]; int W[100000]; long long cost[10240]; vector<int> G[100000]; int Group[10010][1100]; int Answers[10010]; signed main(void){ cin >> N >> M; for(int i = 0; i < 1024; i++){ for(int j = 0; j < N; j++){ Group[i][j] = -1; } } int a; int b; int c; for(int i = 0; i < M; i++){ cin >> a >> b; G[a-1].push_back(b-1); G[b-1].push_back(a-1); } for(int i = 0; i < N; i++){ cin >> c; C[i] = c; } for(int i = 0; i < 10; i++){ cin >> c; W[i] = c; } for(int i = 0; i < 1024; i++){ int T = 0; int w = 0; unordered_set<int> S={}; int c = 0; for(int j = 0; j < 10; j++){ if(i & (1<<j)){ S.insert(j + 1); c+=W[j]; } } cost[i] = c; while(T < N){ queue<int> que={}; que.push(T); Group[i][T] = w; while (!que.empty()){ int p = que.front(); que.pop(); for(int q:G[p]){ if(S.count(C[p]) && S.count(C[q]) && Group[i][q] == -1){ Group[i][q] = Group[i][p]; que.push(q); } } } while (Group[i][T] != -1){ T+=1; if(T >= N){ break; } } w+=1; } } int Q; cin >> Q; int u; int v; for(int i = 0; i < Q; i++){ long long ans = -1; cin >> u >> v; u-=1; v-=1; for(int j = 0; j < 1024; j++){ if(Group[j][u]==Group[j][v]){ if(ans == -1 || cost[j] < ans){ ans = cost[j]; } } } Answers[i] = ans; } for(int i = 0; i < Q; i++){ cout << Answers[i] << endl; } }