AC日记——T-Shirt Hunt codeforces 807b

Posted Only U - IU

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AC日记——T-Shirt Hunt codeforces 807b相关的知识,希望对你有一定的参考价值。

T-Shirt Hunt

 

思路:

  水题;

 

代码:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

int p,x,y,ai[27],ans;

bool check(int xx)
{
    if(xx<y) return false;
    int i=(xx/50)%475;
    for(int j=1;j<=25;j++)
    {
        i=(i*96+42)%475;
        if(p==26+i) return true;
    }
    return false;
}

int main()
{
    scanf("%d%d%d",&p,&x,&y);
    int pos=x;
    while(pos>=y)
    {
        if(check(pos))
        {
            printf("0");
            return 0;
        }
        pos-=50;
    }
    while(x<y) x+=100,ans++;
    while(1)
    {
        if(check(x)||check(x-50))
        {
            printf("%d",ans);
            return 0;
        }
        x+=100,ans++;
    }
    return 0;
}

 

以上是关于AC日记——T-Shirt Hunt codeforces 807b的主要内容,如果未能解决你的问题,请参考以下文章

AC日记——Dividing poj 1014

AC日记——Oulipo poj 3461

AC日记——魔方 洛谷 P2007

AC日记 - - - 27——矩阵输出

AC日记 - - - 29——排序问题

AC日记——采花 洛谷 P2056