結果

問題 No.2897 2集合間距離
ユーザー RubikunRubikun
提出日時 2024-09-20 23:26:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,055 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 207,436 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-09-20 23:27:17
合計ジャッジ時間 8,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
16,896 KB
testcase_01 AC 12 ms
11,264 KB
testcase_02 AC 11 ms
11,392 KB
testcase_03 AC 12 ms
11,136 KB
testcase_04 AC 12 ms
11,264 KB
testcase_05 AC 11 ms
11,392 KB
testcase_06 AC 11 ms
11,392 KB
testcase_07 AC 12 ms
11,264 KB
testcase_08 AC 12 ms
11,392 KB
testcase_09 AC 12 ms
11,264 KB
testcase_10 AC 14 ms
11,392 KB
testcase_11 AC 14 ms
11,392 KB
testcase_12 AC 34 ms
11,264 KB
testcase_13 AC 39 ms
11,392 KB
testcase_14 AC 280 ms
11,648 KB
testcase_15 AC 232 ms
11,392 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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];
        }
    }
    
    int ans=INF;
    
    for(auto [a,b]:A){
        for(int x=0;x<MAX;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