結果

問題 No.2248 max(C)-min(C)
ユーザー hiro71687khiro71687k
提出日時 2023-03-18 16:46:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 3,000 ms
コード長 1,237 bytes
コンパイル時間 4,492 ms
コンパイル使用メモリ 268,708 KB
実行使用メモリ 24,304 KB
最終ジャッジ日時 2024-09-18 13:25:26
合計ジャッジ時間 11,325 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 188 ms
15,540 KB
testcase_19 AC 27 ms
6,944 KB
testcase_20 AC 208 ms
23,268 KB
testcase_21 AC 198 ms
23,436 KB
testcase_22 AC 141 ms
15,592 KB
testcase_23 AC 88 ms
9,860 KB
testcase_24 AC 36 ms
6,948 KB
testcase_25 AC 204 ms
24,020 KB
testcase_26 AC 173 ms
14,560 KB
testcase_27 AC 191 ms
23,992 KB
testcase_28 AC 21 ms
6,940 KB
testcase_29 AC 174 ms
15,076 KB
testcase_30 AC 71 ms
9,848 KB
testcase_31 AC 212 ms
23,332 KB
testcase_32 AC 40 ms
6,940 KB
testcase_33 AC 66 ms
9,764 KB
testcase_34 AC 216 ms
23,300 KB
testcase_35 AC 225 ms
23,252 KB
testcase_36 AC 209 ms
23,192 KB
testcase_37 AC 108 ms
14,100 KB
testcase_38 AC 190 ms
23,156 KB
testcase_39 AC 193 ms
23,320 KB
testcase_40 AC 190 ms
23,120 KB
testcase_41 AC 159 ms
15,380 KB
testcase_42 AC 189 ms
23,244 KB
testcase_43 AC 167 ms
22,892 KB
testcase_44 AC 187 ms
23,648 KB
testcase_45 AC 147 ms
15,448 KB
testcase_46 AC 77 ms
10,324 KB
testcase_47 AC 192 ms
24,076 KB
testcase_48 AC 165 ms
23,928 KB
testcase_49 AC 216 ms
23,368 KB
testcase_50 AC 211 ms
23,368 KB
testcase_51 AC 220 ms
24,304 KB
testcase_52 AC 217 ms
23,748 KB
testcase_53 AC 35 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.14159265359;
ll inf=1001000000000;
ll mod=1000000007;
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n),b(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
    }
    for (ll i = 0; i < n; i++)
    {
        cin >> b[i];
    }
    vector<pair<ll,ll>>c;
    for (ll i = 0; i < n; i++)
    {
        c.push_back({a[i],i});
        c.push_back({b[i],i});
        c.push_back({(a[i]+b[i])/2,i});
    }
    sort(c.begin(),c.end());
    vector<ll>memo(n,0);
    ll mi=c[0].first;
    ll now=0;
    ll ans=inf;
    ll st=0;
    for (ll i = 0; i < c.size(); i++)
    {
        if (memo[c[i].second]==0)
        {
            now+=1;
        }
        memo[c[i].second]+=1;
        if (now==n)
        {
            for (ll j = st; j < i; j++)
            {
                if (memo[c[j].second]==1)
                {
                    mi=c[j].first;
                    st=j;
                    break;
                }else{
                    memo[c[j].second]-=1;
                }
            }
            ans=min(ans,c[i].first-mi);
        }
    }
    cout << ans << endl;
}
0