比赛 4043级2023省选模拟赛8 评测结果 AAAAAAAAAAAAA
题目名称 Hungry Cow 最终得分 100
用户昵称 ムラサメ 运行时间 0.111 s
代码语言 C++ 内存使用 3.62 MiB
提交时间 2023-03-29 19:19:18
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long n,t,cnt,ans;
int main(){
	freopen("jieniu.in","r",stdin);
	freopen("jieniu.out","w",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
    cin>>n>>t;
    long long d,b;
    for(long long i=1;i<=n;i++){
    	cin>>d>>b;
    	if(cnt<d){
    		cnt=d+b;
		}
		else{
			cnt+=b;
		}
		ans+=b;
	}
	if(cnt>t){
		ans-=cnt-t-1;
	}
	cout<<ans<<endl;
    return 0;
}