记录编号 | 578551 | 评测结果 | AAAAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [USACO23 Feb Bronze] Hungry Cow | 最终得分 | 100 | ||
用户昵称 | ムラサメ | 是否通过 | 通过 | ||
代码语言 | C++ | 运行时间 | 0.153 s | ||
提交时间 | 2023-03-29 22:04:22 | 内存使用 | 3.17 MiB | ||
#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; }