結果

問題 No.2248 max(C)-min(C)
ユーザー hiro71687khiro71687k
提出日時 2023-03-18 15:35:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,444 bytes
コンパイル時間 4,776 ms
コンパイル使用メモリ 265,992 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-18 13:20:44
合計ジャッジ時間 23,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 7 ms
5,376 KB
testcase_07 AC 8 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 10 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 749 ms
9,340 KB
testcase_19 AC 89 ms
5,376 KB
testcase_20 AC 777 ms
10,240 KB
testcase_21 AC 471 ms
9,696 KB
testcase_22 AC 503 ms
8,544 KB
testcase_23 AC 292 ms
6,272 KB
testcase_24 AC 139 ms
5,376 KB
testcase_25 AC 619 ms
9,576 KB
testcase_26 AC 641 ms
9,124 KB
testcase_27 AC 513 ms
9,540 KB
testcase_28 AC 79 ms
5,376 KB
testcase_29 AC 581 ms
9,220 KB
testcase_30 AC 301 ms
6,004 KB
testcase_31 AC 787 ms
9,988 KB
testcase_32 AC 132 ms
5,376 KB
testcase_33 AC 276 ms
5,376 KB
testcase_34 AC 726 ms
10,112 KB
testcase_35 AC 849 ms
9,992 KB
testcase_36 AC 792 ms
9,984 KB
testcase_37 AC 296 ms
6,700 KB
testcase_38 AC 398 ms
9,992 KB
testcase_39 AC 449 ms
9,988 KB
testcase_40 AC 435 ms
9,988 KB
testcase_41 AC 383 ms
9,272 KB
testcase_42 AC 441 ms
9,984 KB
testcase_43 AC 397 ms
9,504 KB
testcase_44 AC 499 ms
10,012 KB
testcase_45 AC 362 ms
9,036 KB
testcase_46 AC 197 ms
6,224 KB
testcase_47 AC 392 ms
10,112 KB
testcase_48 AC 370 ms
9,984 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

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];
    }
    if (n==1)
    {
        cout <<0 << endl;
        return 0;
    }
    ll left=0,right=inf;
    ll ans=inf;
    while (right-left>1)
    {
        ll mid=(right+left)/2;
        bool ok=true;
        vector<ll>x;
        for (ll i = 0; i < n; i++)
        {
            vector<ll>c;
            if (a[i]>=mid)
            {
                c.push_back(a[i]);
            }
            if (b[i]>=mid)
            {
                c.push_back(b[i]);
            }
            if ((a[i]+b[i])/2>=mid)
            {
                c.push_back((a[i]+b[i])/2);
            }
            if (c.empty())
            {
                ok=false;
                break;
            }
            sort(c.begin(),c.end());
            x.push_back(c[0]);
        }
        if (!ok)
        {
            right=mid;
            continue;
        }
        sort(x.begin(),x.end());
        if (x[x.size()-1]-x[0]<=ans)
        {
            ans=x[x.size()-1]-x[0];
            left=mid;
        }else{
            right=mid;
        }
    }
    cout << ans << endl;
}
0