QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#747277#7781. Sheep Eat WolvesyldAC ✓197ms200504kbC++202.1kb2024-11-14 16:46:132024-11-14 16:46:19

Judging History

你现在查看的是最新测评结果

  • [2024-11-14 16:46:19]
  • 评测
  • 测评结果:AC
  • 用时:197ms
  • 内存:200504kb
  • [2024-11-14 16:46:13]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define endl '\n'
using namespace std;
int n,m,p,q;
int cnt=0;
int id[105][105][2];
int getid(int x,int y,int op)
{
    if(!id[x][y][op]) id[x][y][op]=++cnt;
    return id[x][y][op];
}
void solve()
{
    cin>>n>>m>>p>>q;
    vector<int> e[101*101*2+1];
    for(int i=0;i<=n;i++)//i j 都是左
    {
        for(int j=0;j<=m;j++)
        {
            // if(j-i>p && i!=0) continue;
            if((m-j)-(n-i)>q && n-i!=0) continue;
            for(int k=0;k<=n;k++)//k l 都是右
            {
                for(int l=0;l<=m;l++)
                {
                    // if(i+k!=n || j+l!=m) continue;
                    // if(l-k>q && l!=0) continue;
                    // if((m-l)-(n-k)>p && n-k!=0) continue;
                    int sheep=k-(n-i),wolf=l-(m-j);//船上羊的数量 狼的数量
                    // if(i==4 && j==4 && k==2 && l==1) cout<<sheep<<' '<<wolf<<endl;
                    if(sheep<0 || wolf<0) continue;
                    if(sheep+wolf>p) continue;
                    if(j-wolf-(i-sheep)>q && i-sheep!=0) continue;
                    // cout<<i<<' '<<j<<' '<<k<<' '<<l<<endl;
                    // if(i==4 && j==4) cout<<k<<' '<<l<<endl;
                    e[getid(i,j,0)].push_back(getid(k,l,1));
                    e[getid(i,j,1)].push_back(getid(k,l,0));
                }
            }
        }
    }
    queue<int> q;
    q.push(getid(n,m,0));
    vector<int> dis(101*101*2+1);
    dis[getid(n,m,0)]=1;
    while(q.size())
    {
        auto u=q.front();q.pop();
        // cout<<x<<' '<<y<<' '<<op<<endl;
        // cout<<u<<endl;
        for(auto v:e[u])
        {
            if(dis[v]) continue;
            dis[v]=dis[u]+1;
            q.push(v);
        }
    }
    int ans=1e18;
    for(int i=0;i<=m;i++)
    {
        int tmp=dis[getid(n,i,1)];
        // cout<<n<<' '<<i<<' '<<tmp<<endl;
        if(tmp) ans=min(tmp,ans);
    }
    if(ans==1e18) cout<<-1<<endl;
    else cout<<ans-1<<endl;
}
signed main()
{
    cin.tie(0)->sync_with_stdio(0);
    int t=1;
    while(t--) solve();
    return 0;
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 4020kb

input:

4 4 3 1

output:

3

result:

ok 1 number(s): "3"

Test #2:

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

input:

3 5 2 0

output:

5

result:

ok 1 number(s): "5"

Test #3:

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

input:

2 5 1 1

output:

-1

result:

ok 1 number(s): "-1"

Test #4:

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

input:

1 1 1 0

output:

1

result:

ok 1 number(s): "1"

Test #5:

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

input:

3 3 1 1

output:

7

result:

ok 1 number(s): "7"

Test #6:

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

input:

3 3 2 1

output:

3

result:

ok 1 number(s): "3"

Test #7:

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

input:

10 9 1 10

output:

19

result:

ok 1 number(s): "19"

Test #8:

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

input:

15 20 2 5

output:

27

result:

ok 1 number(s): "27"

Test #9:

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

input:

18 40 16 7

output:

5

result:

ok 1 number(s): "5"

Test #10:

score: 0
Accepted
time: 9ms
memory: 4456kb

input:

60 60 8 1

output:

27

result:

ok 1 number(s): "27"

Test #11:

score: 0
Accepted
time: 10ms
memory: 5080kb

input:

60 60 8 4

output:

27

result:

ok 1 number(s): "27"

Test #12:

score: 0
Accepted
time: 7ms
memory: 5300kb

input:

60 60 8 8

output:

25

result:

ok 1 number(s): "25"

Test #13:

score: 0
Accepted
time: 10ms
memory: 5348kb

input:

60 60 16 1

output:

13

result:

ok 1 number(s): "13"

Test #14:

score: 0
Accepted
time: 13ms
memory: 7604kb

input:

60 60 16 8

output:

11

result:

ok 1 number(s): "11"

Test #15:

score: 0
Accepted
time: 8ms
memory: 10260kb

input:

60 60 16 16

output:

11

result:

ok 1 number(s): "11"

Test #16:

score: 0
Accepted
time: 15ms
memory: 12580kb

input:

60 60 16 24

output:

9

result:

ok 1 number(s): "9"

Test #17:

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

input:

75 15 1 1

output:

175

result:

ok 1 number(s): "175"

Test #18:

score: 0
Accepted
time: 4ms
memory: 4100kb

input:

50 100 1 0

output:

-1

result:

ok 1 number(s): "-1"

Test #19:

score: 0
Accepted
time: 67ms
memory: 7768kb

input:

100 100 10 10

output:

35

result:

ok 1 number(s): "35"

Test #20:

score: 0
Accepted
time: 56ms
memory: 5172kb

input:

100 100 10 1

output:

37

result:

ok 1 number(s): "37"

Test #21:

score: 0
Accepted
time: 79ms
memory: 11056kb

input:

100 100 10 20

output:

33

result:

ok 1 number(s): "33"

Test #22:

score: 0
Accepted
time: 85ms
memory: 14268kb

input:

100 100 10 30

output:

31

result:

ok 1 number(s): "31"

Test #23:

score: 0
Accepted
time: 115ms
memory: 22264kb

input:

100 100 10 80

output:

21

result:

ok 1 number(s): "21"

Test #24:

score: 0
Accepted
time: 104ms
memory: 5144kb

input:

100 100 1 100

output:

199

result:

ok 1 number(s): "199"

Test #25:

score: 0
Accepted
time: 54ms
memory: 4392kb

input:

100 100 5 0

output:

95

result:

ok 1 number(s): "95"

Test #26:

score: 0
Accepted
time: 65ms
memory: 11240kb

input:

100 100 25 3

output:

13

result:

ok 1 number(s): "13"

Test #27:

score: 0
Accepted
time: 71ms
memory: 16256kb

input:

100 100 30 4

output:

11

result:

ok 1 number(s): "11"

Test #28:

score: 0
Accepted
time: 49ms
memory: 4276kb

input:

95 100 3 3

output:

125

result:

ok 1 number(s): "125"

Test #29:

score: 0
Accepted
time: 64ms
memory: 41068kb

input:

98 99 50 6

output:

5

result:

ok 1 number(s): "5"

Test #30:

score: 0
Accepted
time: 75ms
memory: 32196kb

input:

100 100 45 4

output:

7

result:

ok 1 number(s): "7"

Test #31:

score: 0
Accepted
time: 122ms
memory: 98828kb

input:

100 100 40 39

output:

7

result:

ok 1 number(s): "7"

Test #32:

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

input:

100 100 45 19

output:

7

result:

ok 1 number(s): "7"

Test #33:

score: 0
Accepted
time: 165ms
memory: 200204kb

input:

100 100 49 99

output:

5

result:

ok 1 number(s): "5"

Test #34:

score: 0
Accepted
time: 166ms
memory: 200504kb

input:

100 100 49 100

output:

5

result:

ok 1 number(s): "5"

Test #35:

score: 0
Accepted
time: 190ms
memory: 200220kb

input:

100 100 49 98

output:

5

result:

ok 1 number(s): "5"

Test #36:

score: 0
Accepted
time: 165ms
memory: 200292kb

input:

100 100 49 97

output:

5

result:

ok 1 number(s): "5"

Test #37:

score: 0
Accepted
time: 197ms
memory: 200088kb

input:

100 100 49 96

output:

5

result:

ok 1 number(s): "5"

Test #38:

score: 0
Accepted
time: 180ms
memory: 200068kb

input:

100 100 49 95

output:

5

result:

ok 1 number(s): "5"

Test #39:

score: 0
Accepted
time: 97ms
memory: 84432kb

input:

100 100 100 0

output:

1

result:

ok 1 number(s): "1"

Test #40:

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

input:

1 100 1 0

output:

1

result:

ok 1 number(s): "1"

Test #41:

score: 0
Accepted
time: 44ms
memory: 4604kb

input:

90 100 5 5

output:

87

result:

ok 1 number(s): "87"

Test #42:

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

input:

100 1 1 0

output:

199

result:

ok 1 number(s): "199"

Test #43:

score: 0
Accepted
time: 56ms
memory: 36960kb

input:

94 61 22 35

output:

9

result:

ok 1 number(s): "9"

Test #44:

score: 0
Accepted
time: 15ms
memory: 6852kb

input:

61 92 36 6

output:

7

result:

ok 1 number(s): "7"

Test #45:

score: 0
Accepted
time: 22ms
memory: 4516kb

input:

73 89 12 4

output:

57

result:

ok 1 number(s): "57"

Test #46:

score: 0
Accepted
time: 17ms
memory: 4288kb

input:

71 80 4 3

output:

-1

result:

ok 1 number(s): "-1"

Test #47:

score: 0
Accepted
time: 9ms
memory: 4340kb

input:

44 75 2 31

output:

85

result:

ok 1 number(s): "85"

Test #48:

score: 0
Accepted
time: 8ms
memory: 4772kb

input:

48 62 5 18

output:

35

result:

ok 1 number(s): "35"

Test #49:

score: 0
Accepted
time: 59ms
memory: 36108kb

input:

73 100 22 49

output:

9

result:

ok 1 number(s): "9"

Extra Test:

score: 0
Extra Test Passed