結果

問題 No.3684 chokudai_niku.png
コンテスト
ユーザー ONPU3
提出日時 2026-09-05 13:09:54
言語 C++23
(gcc 15.3.0 + boost 1.92.0)
コンパイル:
g++-15 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 24 ms / 2,000 ms
+ 873µs
コード長 495 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 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
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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;
}
0