QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#24802 | #1825. The King's Guards | Wu_Ren | WA | 1192ms | 8208kb | C++17 | 2.0kb | 2022-04-03 09:16:37 | 2022-04-30 06:38:02 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int n,m,k,fa[310],tp[310],head[610],o,S,T,cur[610],dep[610],cnt;
vector<int>v[310];
struct edg{
int u,v,w;
}ed[50000];
struct edge{
int to,link,w;
}e[4000000];
int find(int a){
return fa[a]==a?a:fa[a]=find(fa[a]);
}
bool mge(int u,int v){
return u=find(u),v=find(v),fa[u]=v,u!=v;
}
void add_edge(int u,int v,int w){
// cerr<<u<<" "<<v<<" "<<w<<"\n";
e[++o]={v,head[u],w},head[u]=o;
e[++o]={u,head[v],0},head[v]=o;
}
queue<int>q;
bool bfs(){
for(int i=1;i<=cnt;i++) cur[i]=head[i],dep[i]=0;
dep[S]=1,q.push(S);
while(q.size()){
int u=q.front();q.pop();
for(int i=head[u],v;i;i=e[i].link) if(e[i].w&&!dep[v=e[i].to]){
dep[v]=dep[u]+1;
q.push(v);
}
}
return dep[T];
}
int dfs(int u,int in){
if(u==T) return in;
int out=0;
for(int &i=cur[u],v;i;i=e[i].link) if(e[i].w&&dep[v=e[i].to]==dep[u]+1){
int res=dfs(v,min(in,e[i].w));
in-=res,out+=res;
e[i].w-=res,e[i^1].w+=res;
if(!in) break;
}
if(!out) dep[u]=0;
return out;
}
bool cov(){
cnt=n+k,S=++cnt,T=++cnt;
for(int i=1;i<=cnt;i++) head[i]=0;o=1;
for(int i=1;i<=k;i++){
add_edge(S,n+i,1);
for(int j:v[i]) add_edge(n+i,find(j),1);
}
for(int i=1;i<=n;i++) if(find(i)==i) add_edge(i,T,1);
int ans=0;
while(bfs()) ans+=dfs(S,2e9);
return ans==k;
}
int main(){
ios::sync_with_stdio(0);
cin>>n>>m>>k;
for(int i=1;i<=m;i++) cin>>ed[i].u>>ed[i].v>>ed[i].w;
for(int i=1,p,w;i<=k;i++){
cin>>p;
while(p--) cin>>w,v[i].push_back(w);
}
iota(fa+1,fa+n+1,1);
sort(ed+1,ed+m+1,[](edg &a,edg &b){return a.w<b.w;});
int _m=0;
for(int i=1;i<=m;i++) if(mge(ed[i].u,ed[i].v)) ed[++_m]=ed[i];
m=_m;
iota(fa+1,fa+n+1,1);
int g=0,ans=0;
for(int i=1;i<=m;i++){
memcpy(tp,fa,sizeof(fa));
mge(ed[i].u,ed[i].v);
// cerr<<"nw "<<ed[i].u<<" "<<ed[i].v<<" "<<ed[i].w<<"\n";
if(!cov()) memcpy(fa,tp,sizeof(fa));
else g++,ans+=ed[i].w;
}
if(g+k==n) cout<<ans<<"\n";
else cout<<"-1\n";
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 2ms
memory: 3680kb
input:
5 6 2 1 2 1 1 3 4 2 4 2 2 5 5 3 4 7 4 5 3 2 1 2 2 2 4
output:
8
result:
ok answer is '8'
Test #2:
score: 0
Accepted
time: 2ms
memory: 3748kb
input:
10 19 6 1 5 761 6 8 606 3 9 648 2 4 115 5 8 814 1 2 712 4 10 13 5 10 797 3 4 956 1 7 73 5 7 192 2 7 110 5 9 302 3 6 120 6 9 494 1 3 668 3 7 966 6 10 974 3 8 41 2 10 5 3 6 4 3 2 1 7 2 10 8 3 10 7 8 2 2 1
output:
429
result:
ok answer is '429'
Test #3:
score: 0
Accepted
time: 3ms
memory: 5632kb
input:
10 43 3 1 3 656 2 6 856 4 10 99 5 6 900 2 7 766 4 7 582 2 8 135 5 7 831 3 5 12 3 10 789 1 8 66 4 9 390 1 7 238 6 7 960 1 4 624 3 9 602 7 10 366 5 8 526 2 9 561 6 10 722 2 5 904 3 4 35 1 9 768 5 9 457 6 8 61 4 6 192 4 5 96 5 10 747 8 9 611 7 8 953 3 8 449 2 4 228 1 6 197 9 10 160 3 6 869 1 2 785 4 8 ...
output:
526
result:
ok answer is '526'
Test #4:
score: 0
Accepted
time: 6ms
memory: 3788kb
input:
277 9038 1 226 260 740 44 226 376 151 263 611 67 269 241 120 181 677 259 271 782 37 52 310 48 152 452 168 266 823 85 234 100 46 201 738 129 153 301 69 147 434 13 72 764 13 234 316 171 222 398 214 255 21 112 158 430 20 118 407 45 152 971 205 214 272 221 275 362 198 268 472 117 176 207 31 75 652 139 1...
output:
5375
result:
ok answer is '5375'
Test #5:
score: 0
Accepted
time: 34ms
memory: 5772kb
input:
297 27966 132 15 197 980 226 259 950 161 168 142 118 176 834 157 221 806 24 210 432 212 242 838 110 166 177 78 170 801 52 166 3 89 213 448 45 170 626 250 251 268 93 222 679 7 128 839 5 7 320 132 191 1 192 295 717 36 231 542 162 175 508 173 178 458 211 272 926 46 168 145 19 150 805 165 262 198 50 179...
output:
775
result:
ok answer is '775'
Test #6:
score: 0
Accepted
time: 3ms
memory: 3596kb
input:
7 7 4 1 3 7 1 4 6 2 3 5 2 4 6 4 5 10 4 6 10 4 7 10 5 4 3 2 7 5 6 5 2 6 7 4 1 2 2 3 6 7 2 5 3 1 6
output:
17
result:
ok answer is '17'
Test #7:
score: 0
Accepted
time: 296ms
memory: 5576kb
input:
300 44850 299 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 1 21 1 1 22 1 1 23 1 1 24 1 1 25 1 1 26 1 1 27 1 1 28 1 1 29 1 1 30 1 1 31 1 1 32 1 1 33 1 1 34 1 1 35 1 1 36 1 1 37 1 1 38 1 1 39 1 1 40 1 1 41 1 1 42 1 1 43 1 ...
output:
1000
result:
ok answer is '1000'
Test #8:
score: 0
Accepted
time: 1192ms
memory: 8204kb
input:
300 44850 299 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 1 21 1 1 22 1 1 23 1 1 24 1 1 25 1 1 26 1 1 27 1 1 28 1 1 29 1 1 30 1 1 31 1 1 32 1 1 33 1 1 34 1 1 35 1 1 36 1 1 37 1 1 38 1 1 39 1 1 40 1 1 41 1 1 42 1 1 43 1 ...
output:
1000
result:
ok answer is '1000'
Test #9:
score: 0
Accepted
time: 146ms
memory: 8208kb
input:
300 44850 150 1 2 4 1 3 4 1 4 4 1 5 3 1 6 10 1 7 4 1 8 8 1 9 5 1 10 4 1 11 9 1 12 9 1 13 1 1 14 3 1 15 5 1 16 7 1 17 5 1 18 2 1 19 6 1 20 4 1 21 10 1 22 5 1 23 7 1 24 2 1 25 2 1 26 4 1 27 4 1 28 5 1 29 8 1 30 10 1 31 9 1 32 1 1 33 7 1 34 5 1 35 4 1 36 6 1 37 8 1 38 1 1 39 2 1 40 1 1 41 1 1 42 1 1 43...
output:
249
result:
ok answer is '249'
Test #10:
score: 0
Accepted
time: 156ms
memory: 4972kb
input:
300 44850 150 1 2 70 1 3 26 1 4 76 1 5 74 1 6 98 1 7 72 1 8 66 1 9 25 1 10 36 1 11 57 1 12 8 1 13 88 1 14 98 1 15 33 1 16 85 1 17 56 1 18 16 1 19 62 1 20 41 1 21 81 1 22 18 1 23 15 1 24 69 1 25 11 1 26 29 1 27 62 1 28 64 1 29 41 1 30 92 1 31 29 1 32 99 1 33 40 1 34 30 1 35 23 1 36 49 1 37 6 1 38 84 ...
output:
1299
result:
ok answer is '1299'
Test #11:
score: 0
Accepted
time: 206ms
memory: 5204kb
input:
300 44850 150 1 2 3 1 3 2 1 4 20 1 5 77 1 6 77 1 7 23 1 8 39 1 9 57 1 10 83 1 11 60 1 12 6 1 13 78 1 14 64 1 15 62 1 16 41 1 17 88 1 18 77 1 19 58 1 20 39 1 21 18 1 22 43 1 23 26 1 24 40 1 25 61 1 26 23 1 27 6 1 28 47 1 29 100 1 30 59 1 31 92 1 32 60 1 33 13 1 34 57 1 35 55 1 36 99 1 37 77 1 38 63 1...
output:
1310
result:
ok answer is '1310'
Test #12:
score: 0
Accepted
time: 92ms
memory: 4264kb
input:
300 44551 299 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 1 21 1 1 22 1 1 23 1 1 24 1 1 25 1 1 26 1 1 27 1 1 28 1 1 29 1 1 30 1 1 31 1 1 32 1 1 33 1 1 34 1 1 35 1 1 36 1 1 37 1 1 38 1 1 39 1 1 40 1 1 41 1 1 42 1 1 43 1 ...
output:
-1
result:
ok answer is '-1'
Test #13:
score: 0
Accepted
time: 96ms
memory: 6212kb
input:
300 44552 299 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 1 21 1 1 22 1 1 23 1 1 24 1 1 25 1 1 26 1 1 27 1 1 28 1 1 29 1 1 30 1 1 31 1 1 32 1 1 33 1 1 34 1 1 35 1 1 36 1 1 37 1 1 38 1 1 39 1 1 40 1 1 41 1 1 42 1 1 43 1 ...
output:
2
result:
ok answer is '2'
Test #14:
score: -100
Wrong Answer
time: 93ms
memory: 4276kb
input:
300 44552 300 1 2 1 1 3 1 1 4 1 1 5 1 1 6 1 1 7 1 1 8 1 1 9 1 1 10 1 1 11 1 1 12 1 1 13 1 1 14 1 1 15 1 1 16 1 1 17 1 1 18 1 1 19 1 1 20 1 1 21 1 1 22 1 1 23 1 1 24 1 1 25 1 1 26 1 1 27 1 1 28 1 1 29 1 1 30 1 1 31 1 1 32 1 1 33 1 1 34 1 1 35 1 1 36 1 1 37 1 1 38 1 1 39 1 1 40 1 1 41 1 1 42 1 1 43 1 ...
output:
0
result:
wrong answer expected '-1', found '0'