結果
| 問題 | No.3684 chokudai_niku.png |
| コンテスト | |
| ユーザー |
ONPU3
|
| 提出日時 | 2026-09-05 13:09:54 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| + 873µs | |
| コード長 | 495 bytes |
| 記録 | |
| コンパイル時間 | 1,942 ms |
| コンパイル使用メモリ | 333,384 KB |
| 実行使用メモリ | 8,064 KB |
| 最終ジャッジ日時 | 2026-09-05 13:10:29 |
| 合計ジャッジ時間 | 8,189 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 44 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main()
{
cin.tie(0)->sync_with_stdio(0);
ll n,m;cin>>n>>m;
vector<ll>a(n),b(n),d(n);
for(auto&o:a)cin>>o;
for(auto&o:b)cin>>o;
for(int i=0;i<n;i++)d[i]=a[i]-b[i];
ll ans=-1LL<<60,now=0,r=0;
for(int i=0;i<n;i++)
{
while(r<n&&r-i<m)
{
now+=max(0ll,d[r]);
r++;
}
ans=max(ans,now);
now-=max(0ll,d[i]);
}
cout<<ans<<endl;
}
ONPU3