zoukankan      html  css  js  c++  java
  • 【Codeforces Round #438 B】Race Against Time

    【链接】h在这里写链接


    【题意】


    时针、分钟、秒针走不过去。
    问你从t1时刻能不能走到t2时刻

    【题解】


    看看时针、分钟、秒针的影响就好。
    看看是不是在整时的位置就好。
    然后看看影响到x不能到y;
    然后从t1开始逆时针或顺时针一直走


    【错的次数】


    0

    【反思】


    在这了写反思

    【代码】

    #include <bits/stdc++.h>
    using namespace std;
    
    bool bo[20][20];
    int h,m,s,t1,t2;
    
    int nex(int x)
    {
        if (x+1>12)
            return 1;
        else
            return x + 1;
    }
    
    int pre(int x)
    {
        if (x-1<=0)
            return 12;
        else
            return x-1;
    }
    
    int main()
    {
        //freopen("F:\rush.txt","r",stdin);
        memset(bo,true,sizeof bo);
        scanf("%d%d%d%d%d",&h,&m,&s,&t1,&t2);
        if (m>0 || s >0)
        {
            bo[nex(h)][h] = false;
            bo[h][nex(h)] = false;
        }else
        {
            bo[nex(h)][h] = false;
            bo[h][nex(h)] = false;
            bo[pre(h)][h] = false;
            bo[h][pre(h)] = false;
        }
        if (s==0)
        {
            if (m%5==0)
            {
                int x = m/5;
                if (x==0) x = 12;
                bo[pre(x)][x] = false;
                bo[x][pre(x)] = false;
                bo[nex(x)][x] = false;
                bo[x][nex(x)] = false;
            }else
            {
                int x = m/5;
                if (x==0) x = 12;
                bo[x][nex(x)] = false;
                bo[nex(x)][x] = false;
            }
        }else
        {
            int x = m/5;
            if (x==0) x = 12;
            bo[x][nex(x)] = false;
            bo[nex(x)][x] = false;
        }
    
        if (s%5==0)
        {
            int x = s/5;
            if (x==0) x = 12;
            bo[pre(x)][x] = false;
            bo[x][pre(x)] = false;
            bo[x][nex(x)] = false;
            bo[nex(x)][x] = false;
        }else{
            int x = s/5;
            if (x==0) x = 12;
            bo[nex(x)][x] = false;
            bo[x][nex(x)] = false;
        }
        while (bo[t1][pre(t1)])
        {
            t1 = pre(t1);
            if (t1==t2)
                return cout <<"YES"<<endl,0;
        }
        while (bo[t1][nex(t1)])
        {
            t1 = nex(t1);
            if (t1==t2)
                return cout << "YES"<<endl,0;
        }
        cout << "NO"<<endl;
        return 0;
    }


  • 相关阅读:
    【Day3】4.Xpath语法与案例
    【Day3】3.提取商城分类结构
    【Day3】2.re模块使用案例
    【Day3】1.正则表达式
    【Day2】4.第三方模块的安装与使用
    【Day2】3.面向对象编程
    【Day2】2.函数
    【Day2】1.循环结构
    命令行切换目录
    D
  • 原文地址:https://www.cnblogs.com/AWCXV/p/7632027.html
Copyright © 2011-2022 走看看