QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#665578 | #7898. I Just Want... One More... | qzez# | WA | 7ms | 31688kb | C++14 | 2.6kb | 2024-10-22 14:10:21 | 2024-10-22 14:10:22 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=3e5+10,INF=1e9;
int T,n,m;
namespace Flow{
const int V=N*2,E=V*2+N*2+N*5;
int s,t,kk;
struct edges{
int to,c,nex;
}edge[E];
int cur[V],head[V],d[V];
void init(int x,int y){
s=x,t=y,kk=1;
fill(head+s,head+1+t,0);
}
int add(int u,int v,int c){
edge[++kk]={v,c,head[u]},head[u]=kk;
edge[++kk]={u,0,head[v]},head[v]=kk;
return kk-1;
}
bool bfs(){
queue<int>q;
q.push(s);
copy(head+s,head+1+t,cur+s);
fill(d+s,d+1+t,-1),d[s]=0;
for(int u;!q.empty();){
u=q.front(),q.pop();
for(int i=head[u];i;i=edge[i].nex){
int v=edge[i].to;
if(edge[i].c&&d[v]==-1)d[v]=d[u]+1,q.push(v);
}
}
return d[t]!=-1;
}
int dfs(int u,int lim=INF){
if(u==t)return lim;
int flow=0;
for(int i=cur[u];i&&flow<lim;i=edge[i].nex){
cur[u]=i;
int v=edge[i].to;
if(!edge[i].c||d[v]!=d[u]+1)continue;
int f=dfs(v,min(lim-flow,edge[i].c));
if(!f)d[v]=-1;
edge[i].c-=f,edge[i^1].c+=f,flow+=f;
}
return flow;
}
int dinic(){
int flow=0;
for(;bfs();)flow+=dfs(s);
return flow;
}
}
int a[N],b[N],w[N+N],vis[N+N];
vector<int>to[N+N];
void dfs(int u){
vis[u]=1;
for(int v:to[u])if(!vis[v]){
w[v]|=w[u],dfs(v);
}
}
void get(){
scanf("%d%d",&n,&m);
vector<pair<int,int>>E(m);
int s=0,t=n+n+1;
Flow::init(s,t);
for(auto &[u,v]:E){
scanf("%d%d",&u,&v);
to[u].push_back(v+n);
to[v+n].push_back(u);
Flow::add(u,v+n,1);
}
for(int i=1;i<=n;i++){
a[i]=Flow::add(s,i,1);
b[i]=Flow::add(i+n,t,1);
}
int tot=Flow::dinic();
// cerr<<tot<<endl;
for(int i=1;i<=n;i++){
if(Flow::edge[a[i]].c)w[i]=1;
else w[i]=0;
if(Flow::edge[b[i]].c)w[i+n]=2;
else w[i+n]=0;
}
// for(int i=1;i<=n+n;i++)cerr<<w[i]<<"\n "[i<n+n];
fill(vis,vis+1+n+n,0);
for(int i=1;i<=n+n;i++)if(!vis[i]&&w[i])dfs(i);
int cnt[2][4];
memset(cnt,0,sizeof cnt);
// for(int i=1;i<=n+n;i++)cerr<<w[i]<<"\n "[i<n+n];
for(int i=1;i<=n;i++){
cnt[0][w[i]]++,cnt[1][w[i+n]]++;
}
printf("%lld\n",1ll*cnt[0][1]*cnt[1][2]+1ll*cnt[0][2]*cnt[1][1]);
}
void clr(){
for(int i=1;i<=n+n;i++)to[i].clear();
}
int main(){
for(scanf("%d",&T);T--;clr())get();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 31512kb
input:
3 4 3 1 2 3 2 4 3 3 3 1 3 2 2 3 1 3 2 1 2 1 2
output:
6 0 4
result:
ok 3 number(s): "6 0 4"
Test #2:
score: -100
Wrong Answer
time: 7ms
memory: 31688kb
input:
10000 5 4 2 2 3 1 5 3 1 1 1 1 1 1 1 1 1 1 2 2 2 2 1 2 1 1 1 1 1 1 1 1 1 1 1 1 2 3 2 1 1 2 1 1 5 5 1 4 2 2 3 1 1 3 1 2 2 4 2 2 2 1 1 2 1 1 5 1 5 3 3 1 2 2 1 1 1 1 3 2 3 1 2 1 5 2 1 2 2 3 5 3 1 5 4 2 1 2 4 1 1 1 2 3 1 1 2 2 2 1 4 1 1 4 3 1 1 1 1 1 1 1 2 1 2 2 3 3 1 3 2 3 2 2 3 3 1 3 3 3 1 2 3 3 2 2 1 ...
output:
6 0 0 2 0 0 0 0 8 0 16 4 0 6 9 9 9 0 9 4 0 1 1 1 0 4 16 15 3 2 16 0 2 2 20 1 0 0 0 0 16 4 4 16 4 9 0 9 0 2 3 0 9 4 9 16 20 0 0 1 12 0 1 2 0 0 1 0 0 2 2 5 0 12 1 0 0 2 1 2 2 3 0 5 1 6 0 0 0 0 9 16 2 0 1 2 0 12 2 4 0 12 1 1 9 4 6 9 9 12 3 16 15 16 9 4 9 0 1 16 9 10 1 9 16 9 12 4 9 2 0 4 0 6 0 3 0 0 0 ...
result:
wrong answer 9th numbers differ - expected: '6', found: '8'