QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#906581#6766. Direction SettingisWFnoya#AC ✓2ms8020kbC++263.5kb2025-02-20 01:38:252025-02-20 01:38:25

Judging History

This is the latest submission verdict.

  • [2025-02-20 01:38:25]
  • Judged
  • Verdict: AC
  • Time: 2ms
  • Memory: 8020kb
  • [2025-02-20 01:38:25]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll,ll> PII;
const ll N=1919810,inf=1e18;
const ll V=2010,E=200010;
int n,m,k,s,t;
int a[N],b[N];
bool tf[314];
template<typename T>
struct MaxFlow
{
    int s, t, vtot;
    int head[V], etot;
    int dis[V], cur[V];
    struct edge
    {
        int v, nxt;
        T f;
    }e[E * 2];
    void addedge(int u, int v, T f)
    {
        e[etot] = {v, head[u], f}; head[u] = etot++;
        e[etot] = {u, head[v], 0}; head[v] = etot++;
    }
    bool bfs()
    {
        for(int i = 1 ; i <= vtot ; i++ )
        {
            dis[i] = 0;
            cur[i] = head[i];
        }
        queue<int> q;
        q.push(s); dis[s] = 1;
        while(!q.empty())
        {
            int u = q.front(); q.pop();
            for(int i = head[u] ; ~i ; i = e[i].nxt)
            {
                if(e[i].f && !dis[e[i].v])
                {
                    int v = e[i].v;
                    dis[v] = dis[u] + 1;
                    if(v == t) return true;
                    q.push(v);
                }
            }
        }
        return false;
    }
    T dfs(int u, T m)
    {
        if(u == t) return m;
        T flow = 0;
        for(int i = cur[u]; ~i ; cur[u] = i = e[i].nxt)
        {
            if(e[i].f && dis[e[i].v] == dis[u] + 1)
            {
                T f = dfs(e[i].v, min(m, e[i].f));
                e[i].f -= f;
                e[i ^ 1].f += f;
                m -= f;
                flow += f;
                if(!m) break;
            }
        }
        if(!flow) dis[u] = -1;
        return flow;
    }
    T dinic()
    {
        T flow = 0;
        while(bfs()) flow += dfs(s, numeric_limits<T>::max());
        return flow;
    }
    void init(int s_, int t_, int vtot_ )
    {
        s = s_;
        t = t_;
        vtot = vtot_;
        etot = 0;
        for(int i = 1 ; i <= vtot ; i++ )
        {
            head[i] = -1;
        }
    } 
};

MaxFlow<ll> g;

// int u[N],v[N];


void __(){
    memset(tf,false,sizeof tf);
    cin>>n>>m;
    for(int i=1;i<=n;i++) cin>>a[i];
    int s,t,tot;
    tot=n*2+m*2+m*2;
    s=++tot;
    t=++tot;
    g.init(s,t,tot);
    for(int i=1;i<=n;i++){
        g.addedge(i,i+n,a[i]);
        g.addedge(i+n,t,inf);
    }
    for(int i=1;i<=m;i++){
        g.addedge(s,n*2+m*2+i,inf);
        g.addedge(n*2+m*2+i,n*2+m*3+i,1);
    }
    for(int i=1;i<=m;i++){
        int x,y;
        cin>>x>>y;
        g.addedge(n*2+m*3+i,i+2*n,1);
        g.addedge(i+2*n,x,1);
        g.addedge(n*2+m*3+i,i+2*n+m,1);
        g.addedge(i+2*n+m,y,1);
        // u[i]=x,v[i]=y;
    }
    int ans=g.dinic();
    // cout<<ans<<endl;
    printf("%d\n",max(0,m-ans));
    for(int i=1;i<=m;i++){
        int num=n*2+m*3+i,need1=i+2*n,need2=i+2*n+m;
        map<int,int> mp;
        for(int j=g.head[num];~j;j=g.e[j].nxt){
            // cout<<g.e[j].v<<" "<<need1<<" "<<need2<<" "<<g.e[j].f<<endl;
            mp[g.e[j].v]=g.e[j].f;
        }
        if(mp[need1]==0) tf[i]=1;
        // for(auto j:se) cout<<j<<" ";
        // cout<<endl;
        // if(!se.count(need2)) tf[i]=1;
    }
    for(int i=1;i<=m;i++){
        if(tf[i]) printf("1");
        else printf("0");
    }
    puts("");
}
/*
输入:
7 14 1 7
1 2 5
1 3 6
1 4 5
2 3 2
2 5 3
3 2 2
3 4 3
3 5 3
3 6 7
4 6 5
5 6 1
6 5 1
5 7 8
6 7 7

输出:
14

*/

int main(){
    int _=1;
    cin>>_;
    while(_--){
        __();
    }
}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 7884kb

input:

2
4 5
0 1 1 5
1 2
1 3
2 3
3 2
4 4
3 2
0 0 2
1 3
3 2

output:

2
00000
0
01

result:

ok 2 cases

Test #2:

score: 0
Accepted
time: 0ms
memory: 7892kb

input:

120
21 14
0 1 2 2 3 2 0 1 0 3 3 2 1 1 2 0 1 3 1 0 0
6 12
14 11
10 18
15 12
6 11
15 8
3 4
10 11
3 18
5 13
5 19
5 10
17 18
4 2
20 21
9 3 0 4 7 9 5 2 0 4 0 1 6 1 5 8 3 2 7 0
16 6
12 6
11 4
6 6
19 10
17 19
20 20
1 17
15 10
3 2
5 16
7 8
6 1
6 4
18 16
1 8
4 1
20 6
6 9
4 15
7 5
6 16
12 8 0 9 5 8
4 5
6 3
2 ...

output:

0
00000000000000
1
000000000000000000100
0
0100001000001000
2
001000111000001001000001
2
00001000001
2
000000001000100000000011
3
0000000001010000010010
0
00
0
0000000000000000000
0
0000000000000010
2
0000110001000
3
000100000
0
0000000
0
000000000000000
0
0000000000000000000
2
00000001100000000001
...

result:

ok 120 cases

Test #3:

score: 0
Accepted
time: 1ms
memory: 8016kb

input:

120
5 9
1 2 2 3 1
2 2
2 4
1 5
4 3
3 4
3 3
1 5
5 4
4 3
5 4
1 0 1 1 1
2 3
5 3
1 4
4 3
15 17
0 1 1 3 1 2 1 1 1 1 1 2 0 1 1
14 6
13 12
11 4
9 8
9 4
10 5
10 2
4 4
7 4
11 10
15 6
7 1
5 3
13 14
15 12
2 14
11 6
13 17
2 2 1 1 2 1 0 0 1 4 1 1 1
5 11
6 2
2 1
5 2
1 12
7 10
10 2
1 3
3 11
7 1
9 7
11 10
11 2
4 3
7...

output:

0
011100000
0
0111
0
00001010011100010
0
11010000001001001
0
0000100
5
0000011000001
4
1001001
2
000000101010011011001
0
00000
0
0001
0
00000
0
1001
5
00110100100101001
4
000100111
4
00100100
4
10000000101010000
0
110000001010100
0
010000101000001
0
0001001111010100000
4
00000000100
2
00000001001110...

result:

ok 120 cases

Test #4:

score: 0
Accepted
time: 1ms
memory: 7760kb

input:

120
12 11
7 0 0 1 0 0 1 1 0 0 1 0
12 1
1 9
1 2
1 8
3 1
6 1
10 1
1 7
5 1
11 1
4 1
11 10
1 0 0 0 1 0 7 0 0 0 1
7 11
6 7
7 5
8 7
10 7
9 7
7 4
7 1
7 2
3 7
24 23
1 1 1 1 0 5 1 1 1 1 0 1 1 1 1 0 1 0 1 1 1 1 0 1
20 6
12 6
6 9
1 6
6 15
14 6
6 2
6 18
23 6
10 6
3 6
6 16
6 7
17 6
6 13
19 6
6 22
5 6
4 6
6 11
6 ...

output:

0
01100000011
0
0000001010
0
11010101011101010011001
0
1010
0
0001101111101
0
1000110001101101011
0
10100101
0
00011011110
0
101001111011011001110110
0
1001111110010001
0
00100
0
0010101001
0
00101101011111101
0
100001110100100000
0
10011100001110011000
0
010010000101000111001
0
010
0
001100110
0
10...

result:

ok 120 cases

Test #5:

score: 0
Accepted
time: 1ms
memory: 7892kb

input:

10
300 300
0 0 0 1 6 3 0 36 0 0 0 0 8 53 23 2 8 7 8 4 1 0 3 5 0 4 0 0 2 5 5 5 7 0 0 4 3 0 0 21 2 7 6 2 0 0 0 4 0 67 3 4 9 3 1 1 0 6 2 2 0 0 0 0 0 41 5 0 0 15 2 5 0 6 5 4 0 7 4 4 6 8 0 7 2 6 0 4 4 0 8 22 1 2 6 3 0 3 6 0 0 3 0 0 6 3 0 63 3 7 7 4 0 0 0 26 0 0 1 3 6 1 1 0 0 22 0 2 0 0 1 7 4 1 0 1 0 4 0 ...

output:

31
000000011000010100110100100000000000100110010000001001001000000110001001101010011000110010000100000100101000000000100010010000100110000000000101100111101000001100001101110010000000001010011100101110000100000010101011001000100000101000001000001000001100000000000000000110000001110010100000001101100...

result:

ok 10 cases

Test #6:

score: 0
Accepted
time: 1ms
memory: 7864kb

input:

10
30 300
17 12 25 27 17 21 21 24 10 18 23 19 25 26 14 23 9 27 22 19 25 15 13 22 25 12 20 10 27 22
29 11
25 9
23 10
9 25
25 12
20 1
18 9
2 1
30 14
2 10
6 18
3 27
10 17
14 4
21 2
2 15
28 4
7 8
19 13
14 13
8 7
10 18
4 18
4 19
5 16
23 14
21 24
24 12
15 24
23 29
11 25
10 4
23 9
27 13
18 26
12 24
23 3
27...

output:

0
0100001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000...

result:

ok 10 cases

Test #7:

score: 0
Accepted
time: 2ms
memory: 8020kb

input:

10
290 299
0 3 2 1 2 0 0 0 0 1 0 3 2 1 3 0 0 3 1 0 3 1 0 1 0 0 0 1 0 3 0 1 0 2 1 7 0 1 0 3 0 2 1 2 1 2 0 1 0 0 2 2 1 0 0 0 0 1 2 0 2 1 0 1 2 1 1 0 1 0 0 0 1 1 1 1 1 2 2 1 3 0 0 1 2 0 1 0 1 2 1 1 0 0 2 1 2 1 1 0 1 0 2 0 0 1 1 0 0 1 0 4 1 2 2 1 1 1 1 2 2 3 1 1 1 0 1 2 1 1 2 0 1 1 1 1 0 0 2 1 1 0 0 1 1...

output:

0
1111100000010110001101010001000010011010011010010100011001001000000010011100100011101100001001101110000111111110010001110000011000000111011001011110101010101110110100001110001000111100000010111010011001100101011100000110001100011001001101000001111100011000001010001001100100011101001000000111010101...

result:

ok 10 cases

Test #8:

score: 0
Accepted
time: 1ms
memory: 7892kb

input:

10
300 299
1 1 1 1 1 1 0 1 0 0 1 1 1 1 0 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 1 1 0 0 1 1 0 1 0 1 1 0 0 0 0 0 0 1 0 0 1 0 1 0 0 1 0 0 1 0 0 1 0 1 0 1 1 1 0 1 1 0 1 1 1 1 1 1 0 1 1 1 0 0 1 142 1 0 0 1 1 1 0 0 0 1 0 1 1 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 1 0 1 1 0 0 1 0 1 0 1 1 1 0 0 0 1 0 0 1 0 1 1 0 1 1 1 1 0...

output:

0
0111101010001110110101100110100101010010001000100000011000100101111101111101010111000110110010110011010000011011011101000000111011111001010111001011010110010000110010110000010111011100111100100011110110010010101111110011110011001001101011010100101001110111101100000101101111110010001110011010111011...

result:

ok 10 cases