結果

問題 No.2897 2集合間距離
ユーザー RubikunRubikun
提出日時 2024-09-20 21:38:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,211 ms / 3,500 ms
コード長 2,109 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 209,428 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-09-20 21:38:43
合計ジャッジ時間 5,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,264 KB
testcase_01 AC 10 ms
11,392 KB
testcase_02 AC 8 ms
11,240 KB
testcase_03 AC 8 ms
11,344 KB
testcase_04 AC 9 ms
11,400 KB
testcase_05 AC 8 ms
11,264 KB
testcase_06 AC 9 ms
11,380 KB
testcase_07 AC 9 ms
11,264 KB
testcase_08 AC 9 ms
11,460 KB
testcase_09 AC 10 ms
11,436 KB
testcase_10 AC 10 ms
11,284 KB
testcase_11 AC 9 ms
11,396 KB
testcase_12 AC 9 ms
11,288 KB
testcase_13 AC 9 ms
11,392 KB
testcase_14 AC 12 ms
11,392 KB
testcase_15 AC 13 ms
11,520 KB
testcase_16 AC 103 ms
14,336 KB
testcase_17 AC 95 ms
14,296 KB
testcase_18 AC 95 ms
14,336 KB
testcase_19 AC 92 ms
14,208 KB
testcase_20 AC 90 ms
14,336 KB
testcase_21 AC 111 ms
14,216 KB
testcase_22 AC 1,211 ms
14,208 KB
testcase_23 AC 96 ms
14,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=1005,INF=15<<26;

int dp1[MAX][MAX],dp2[MAX][MAX];

#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")


mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    for(int i=0;i<MAX;i++) for(int j=0;j<MAX;j++){dp1[i][j]=-INF;dp2[i][j]=INF;}
    
    int N;cin>>N;
    vii A(N);
    for(int i=0;i<N;i++){
        cin>>A[i].fi>>A[i].se;
    }
    int M;cin>>M;
    vii B(M);
    for(int i=0;i<M;i++){
        int a,b;cin>>a>>b;
        dp1[a][b]=b;
        dp2[a][b]=b;
    }
    
    for(int a=0;a<MAX;a++){
        for(int b=0;b<MAX;b++){
            if(dp1[a][b]==b) continue;
            if(b) dp1[a][b]=dp1[a][b-1];
        }
        for(int b=MAX-1;b>=0;b--){
            if(dp2[a][b]==b) continue;
            if(b+1<MAX) dp2[a][b]=dp2[a][b+1];
        }
    }
    
    shuffle(all(A),rng);
    
    int ans=INF;
    
    for(auto [a,b]:A){
        for(int x=max(0,a-ans);x<=min(1000,a+ans);x++){
            if(dp1[x][b]!=-INF) chmin(ans,abs(a-x)+abs(b-dp1[x][b]));
            if(dp2[x][b]!=INF) chmin(ans,abs(a-x)+abs(b-dp2[x][b]));
        }
    }
    
    cout<<ans<<endl;
}


0