結果

問題 No.2248 max(C)-min(C)
ユーザー nagisa5101nagisa5101
提出日時 2023-03-25 05:07:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,289 ms / 3,000 ms
コード長 2,602 bytes
コンパイル時間 4,805 ms
コンパイル使用メモリ 277,696 KB
実行使用メモリ 110,276 KB
最終ジャッジ日時 2024-09-18 17:58:46
合計ジャッジ時間 39,498 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 1,113 ms
96,640 KB
testcase_19 AC 74 ms
15,360 KB
testcase_20 AC 1,226 ms
110,208 KB
testcase_21 AC 1,172 ms
104,776 KB
testcase_22 AC 731 ms
74,032 KB
testcase_23 AC 460 ms
48,780 KB
testcase_24 AC 130 ms
21,148 KB
testcase_25 AC 1,125 ms
100,224 KB
testcase_26 AC 920 ms
89,344 KB
testcase_27 AC 1,081 ms
99,328 KB
testcase_28 AC 56 ms
12,928 KB
testcase_29 AC 946 ms
92,340 KB
testcase_30 AC 306 ms
39,424 KB
testcase_31 AC 1,289 ms
110,224 KB
testcase_32 AC 142 ms
23,808 KB
testcase_33 AC 256 ms
36,480 KB
testcase_34 AC 1,204 ms
110,168 KB
testcase_35 AC 1,239 ms
110,180 KB
testcase_36 AC 1,215 ms
110,276 KB
testcase_37 AC 552 ms
59,008 KB
testcase_38 AC 1,112 ms
96,384 KB
testcase_39 AC 1,079 ms
96,220 KB
testcase_40 AC 1,121 ms
96,200 KB
testcase_41 AC 936 ms
84,224 KB
testcase_42 AC 1,134 ms
96,256 KB
testcase_43 AC 942 ms
86,656 KB
testcase_44 AC 1,139 ms
96,256 KB
testcase_45 AC 825 ms
77,596 KB
testcase_46 AC 341 ms
44,548 KB
testcase_47 AC 1,199 ms
96,284 KB
testcase_48 AC 303 ms
42,344 KB
testcase_49 AC 1,194 ms
110,148 KB
testcase_50 AC 1,182 ms
110,208 KB
testcase_51 AC 1,247 ms
110,136 KB
testcase_52 AC 1,230 ms
110,168 KB
testcase_53 AC 131 ms
20,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

using namespace std;
using namespace atcoder;

#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repll(i, n) for (long long i = 0; i < (long long)(n); i++)
#define rep2(i, n, m) for (int i = n; i < (int)(m); i++)
#define repll2(i, n, m) for (long long i = n; i < (long long)(m); i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using ld=long double;
using vi=vector<int>;
using vvi=vector<vi>;
using vvvi=vector<vvi>;
using vl=vector<ll>;
using vvl=vector<vl>;
using vvvl=vector<vvl>;
using vld=vector<ld>;
using vvld=vector<vld>;

int dx[8]={1,0,-1,0,1,1,-1,-1};
int dy[8]={0,1,0,-1,1,-1,1,-1};

const double PI = acos(-1);
//const ll MOD=1e9+7;
//const ll MOD=998244353;
const ll INF=(1LL<<60);
const int INF2=(1<<30);
//using mint=modint1000000007;
//using mint=modint998244353;

int main() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int n;cin>>n;
    set<ll> val;
    vl a(n,0),b(n,0);
    rep(i,n)cin>>a[i];
    rep(i,n)cin>>b[i];
    rep(i,n)val.insert(a[i]);
    rep(i,n)val.insert(b[i]);
    rep(i,n)val.insert((a[i]+b[i])/2);
    ll sz=val.size();
    map<ll,ll> val_to_index;
    vl index_to_val(sz,0);
    int now=0;
    for(auto ite=val.begin();ite!=val.end();ite++){
        val_to_index[*ite]=now;
        index_to_val[now]=*ite;
        now++;
    }
    vvi index_to_index(sz);
    //index_to_val[i]にあたる値を持っている添字
    rep(i,n){
        int index=val_to_index[a[i]];
        index_to_index[index].push_back(i);
        index=val_to_index[b[i]];
        index_to_index[index].push_back(i);
        index=val_to_index[(a[i]+b[i])/2];
        index_to_index[index].push_back(i);
    }
    ll ans=INF;
    int left=0,right=-1;
    int f=0;
    vi cnt(n,0);
    int c=0;
    while(1){
        if(f==0){
            right++;
            if(right==sz)break;
            int v=index_to_val[right];
            for(auto i:index_to_index[right]){
                cnt[i]++;
                if(cnt[i]==1){
                    c++;
                    if(c==n)f=1;
                }
            }
        }
        else{
            for(auto i:index_to_index[left]){
                cnt[i]--;
                if(cnt[i]==0){
                    c--;
                    f=0;
                }
            }
            left++;
        }
        if(f){
            ll u=index_to_val[left],v=index_to_val[right];
            ans=min(ans,v-u);
        }
    }
    cout<<ans<<endl;
    return 0;
}
0