L1-3-嵌套循环 / if-else 阅览室 (20 分)

时隔多年,也是终于纯纯靠自己写出来了,这种感觉确实是比当初背代码的感觉要好一些。哎,还是得要纯纯地靠自己思考下刷题才是有效的啊。

#include<bits/stdc++.h>
using namespace std;
const int N = 1e3+10;
struct shu{
    int time;
    int st;
    
}shus[N];

struct day{
    int cnt;
    int total;
    int pj;
}days[20];

int main(){
    int n;
    cin>>n;
    int shuhao;
    char caozuo;
    int hh,mm;
    for(int i=0;i<n;){
        scanf("%d %c %d:%d",&shuhao,&caozuo,&hh,&mm);
        if(caozuo == 'S'){
            shus[shuhao].time = hh * 60 + mm;
            shus[shuhao].st = 1;
        }
        if(caozuo == 'E'){
            if(shus[shuhao].st == 1){
                days[i].cnt++;
                days[i].total += hh * 60 + mm - shus[shuhao].time;
                shus[shuhao].st = 0;
            }
        }
        if(shuhao == 0){
            double l = days[i].cnt;
            double p = days[i].total;
            if(l == 0){
                cout<<0<<" "<<0<<endl;
            }
            else{
                cout<<l<<" "<<int(p/l + 0.5) <<endl;
            }
            i++;
            memset(shus , 0 ,sizeof shus);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值