結果

問題 No.2897 2集合間距離
ユーザー RubikunRubikun
提出日時 2024-09-20 23:26:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,197 ms / 3,500 ms
コード長 2,019 bytes
コンパイル時間 2,583 ms
コンパイル使用メモリ 206,608 KB
実行使用メモリ 14,336 KB
最終ジャッジ日時 2024-09-20 23:26:39
合計ジャッジ時間 6,174 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
11,264 KB
testcase_01 AC 11 ms
11,264 KB
testcase_02 AC 12 ms
11,428 KB
testcase_03 AC 13 ms
11,332 KB
testcase_04 AC 11 ms
11,196 KB
testcase_05 AC 12 ms
11,264 KB
testcase_06 AC 11 ms
11,392 KB
testcase_07 AC 11 ms
11,264 KB
testcase_08 AC 12 ms
11,520 KB
testcase_09 AC 12 ms
11,464 KB
testcase_10 AC 11 ms
11,264 KB
testcase_11 AC 12 ms
11,232 KB
testcase_12 AC 11 ms
11,368 KB
testcase_13 AC 12 ms
11,264 KB
testcase_14 AC 15 ms
11,340 KB
testcase_15 AC 16 ms
11,584 KB
testcase_16 AC 130 ms
14,224 KB
testcase_17 AC 136 ms
14,336 KB
testcase_18 AC 136 ms
14,336 KB
testcase_19 AC 129 ms
14,332 KB
testcase_20 AC 126 ms
14,336 KB
testcase_21 AC 131 ms
14,208 KB
testcase_22 AC 1,197 ms
14,328 KB
testcase_23 AC 103 ms
14,208 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];


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