結果

問題 No.2248 max(C)-min(C)
ユーザー hiro71687khiro71687k
提出日時 2023-03-18 15:22:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,421 bytes
コンパイル時間 3,858 ms
コンパイル使用メモリ 266,820 KB
実行使用メモリ 10,500 KB
最終ジャッジ日時 2024-09-18 13:19:48
合計ジャッジ時間 20,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 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 6 ms
5,376 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 9 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 8 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 670 ms
9,432 KB
testcase_19 AC 81 ms
5,376 KB
testcase_20 AC 709 ms
9,988 KB
testcase_21 AC 462 ms
9,704 KB
testcase_22 AC 463 ms
8,424 KB
testcase_23 AC 291 ms
6,272 KB
testcase_24 AC 119 ms
5,376 KB
testcase_25 AC 580 ms
9,576 KB
testcase_26 AC 569 ms
8,996 KB
testcase_27 AC 490 ms
9,540 KB
testcase_28 AC 68 ms
5,376 KB
testcase_29 AC 545 ms
9,216 KB
testcase_30 AC 254 ms
6,024 KB
testcase_31 AC 698 ms
10,116 KB
testcase_32 AC 120 ms
5,376 KB
testcase_33 AC 250 ms
5,376 KB
testcase_34 AC 672 ms
10,116 KB
testcase_35 AC 702 ms
9,992 KB
testcase_36 AC 635 ms
9,988 KB
testcase_37 AC 269 ms
6,828 KB
testcase_38 AC 383 ms
10,116 KB
testcase_39 AC 400 ms
9,984 KB
testcase_40 AC 381 ms
9,984 KB
testcase_41 AC 333 ms
9,280 KB
testcase_42 AC 357 ms
10,116 KB
testcase_43 AC 369 ms
9,404 KB
testcase_44 AC 403 ms
9,988 KB
testcase_45 AC 298 ms
8,912 KB
testcase_46 AC 173 ms
6,220 KB
testcase_47 AC 371 ms
10,112 KB
testcase_48 WA -
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=-1,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;
        }else{
            left=mid;
        }
        sort(x.begin(),x.end());
        if (x[x.size()-1]-x[0]<ans)
        {
            ans=x[x.size()-1]-x[0];
        }
    }
    cout << ans << endl;
}
0