結果
問題 | No.2630 Colorful Vertices and Cheapest Paths |
ユーザー | cho435 |
提出日時 | 2024-02-16 22:00:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 737 ms / 2,500 ms |
コード長 | 1,101 bytes |
コンパイル時間 | 5,815 ms |
コンパイル使用メモリ | 306,104 KB |
実行使用メモリ | 44,032 KB |
最終ジャッジ日時 | 2024-09-28 20:17:48 |
合計ジャッジ時間 | 15,421 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
12,800 KB |
testcase_01 | AC | 378 ms
23,808 KB |
testcase_02 | AC | 643 ms
40,192 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 124 ms
8,320 KB |
testcase_07 | AC | 641 ms
43,392 KB |
testcase_08 | AC | 591 ms
38,784 KB |
testcase_09 | AC | 655 ms
43,904 KB |
testcase_10 | AC | 719 ms
43,904 KB |
testcase_11 | AC | 737 ms
43,904 KB |
testcase_12 | AC | 722 ms
44,032 KB |
testcase_13 | AC | 697 ms
44,032 KB |
testcase_14 | AC | 718 ms
43,904 KB |
testcase_15 | AC | 133 ms
6,820 KB |
testcase_16 | AC | 134 ms
6,820 KB |
testcase_17 | AC | 137 ms
6,820 KB |
testcase_18 | AC | 237 ms
14,976 KB |
testcase_19 | AC | 432 ms
34,432 KB |
testcase_20 | AC | 386 ms
28,928 KB |
testcase_21 | AC | 510 ms
43,904 KB |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define rep(i,n) for(int i=0;i<(int)(n);i++) using mint = atcoder::modint998244353; using atcoder::dsu; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,m; cin>>n>>m; vector<vector<int>> g(n); rep(i,m){ int a,b; cin>>a>>b; a--; b--; g.at(a).push_back(b); g.at(b).push_back(a); } vector<int> c(n); rep(i,n) cin>>c.at(i); rep(i,n) c.at(i)--; vector<int> w(10); rep(i,10) cin>>w.at(i); vector<dsu> d(1<<10,dsu(n)); vector<ll> sc(1<<10,0); rep(bit,1<<10){ dsu &uf=d.at(bit); rep(x,n){ if((bit>>c.at(x))&1){ for(int y:g.at(x)){ if((bit>>c.at(y))&1){ uf.merge(x,y); } } } } rep(i,10){ if((bit>>i)&1) sc.at(bit)+=w.at(i); } } int q; cin>>q; rep(Qi,q){ int u,v; cin>>u>>v; u--; v--; ll ans=1e18; rep(bit,1<<10){ if(d.at(bit).same(u,v)){ ans=min(ans,sc.at(bit)); } } if(ans==1e18) ans=-1; cout<<ans<<'\n'; } }