ccf 小明放学 201812-2

本文深入探讨了交通信号灯的算法实现,通过细致的时间计算确保车辆在不同信号灯间的顺畅通行。利用C++编程,文章详细展示了如何根据红绿灯状态调整等待时间,为读者提供了完整的代码示例。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

简单判断,细心一点就好了。

对于每个灯,判断一下在当前时间下是什么颜色。

 

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
const double epos=1e-8;

ll r,y,g;
int id;
ll x;

int main(){
    int n;
    scanf("%lld%lld%lld",&r,&y,&g);
    scanf("%d",&n);
    ll res=0;
    while(n--){
        scanf("%d%lld",&id,&x);
        if(!id) res+=x;
        else if(id==1){
            if(x>=res) res+=x-res;
            else{
                ll t=res-x;
                t%=(r+y+g);
                if(t>=g) res+=y+r-(t-g);


            }
        }
        else if(id==2){
            if(x>=res) res+=x-res+r;
            else{
                ll t=res-x;
                t%=(r+y+g);
                if(t<r) res+=r-t;
                else if(t>=r+g) res+=y-(t-r-g)+r;

            }
        }
        else{
            if(x<res){
                ll t=res-x;
                t%=(r+y+g);
                if(t<y) res+=y-t+r;
                else if(t>=y&&t<r+y) res+=r-(t-y);

            }
        }


    }
    printf("%lld\n",res);



    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值