結果

問題 No.2897 2集合間距離
ユーザー vjudge1vjudge1
提出日時 2024-09-26 22:01:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,251 bytes
コンパイル時間 2,606 ms
コンパイル使用メモリ 246,824 KB
実行使用メモリ 7,784 KB
最終ジャッジ日時 2024-09-26 22:01:24
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 19 ms
6,940 KB
testcase_15 AC 20 ms
6,944 KB
testcase_16 AC 408 ms
7,140 KB
testcase_17 AC 374 ms
6,944 KB
testcase_18 AC 391 ms
7,784 KB
testcase_19 AC 369 ms
6,940 KB
testcase_20 AC 375 ms
7,400 KB
testcase_21 AC 363 ms
6,944 KB
testcase_22 WA -
testcase_23 AC 420 ms
7,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define fi first
#define sc second
#define pii pair<int,int>
#define pb push_back
#define umap unordered_map
#define mset multiset
#define pq priority_queue
#define ull unsigned long long
#define i128 __int128
const int maxn=2e5+10;
int n,x[maxn],m,y[maxn];
vector<int> vec[maxn];
void solve(){
    cin>>n;
    for(int i=1;i<=n;i++) cin>>x[i]>>y[i];
    cin>>m;
    for(int i=1;i<=m;i++){
        int a,b;
        cin>>a>>b;
        vec[a].pb(b);
    }
    int res=1e9;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=1e3;j++){
            if(abs(x[i]-j)>res) continue;
            if(vec[j].empty()) continue;
            auto p=upper_bound(vec[j].begin(),vec[j].end(),y[i]);
            if(p!=vec[j].end()) res=min(res,abs(x[i]-j)+abs(y[i]-(*p)));
            if(p!=vec[j].begin()){
                p--,res=min(res,abs(x[i]-j)+abs(y[i]-(*p)));
                if(p!=vec[j].begin()) p--,res=min(res,abs(x[i]-j)+abs(y[i]-(*p)));   
            }
        }
    }
    cout<<res<<endl;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    int t=1;
    // cin>>t;
    while(t--) solve();
    return 0;
}
/*
Samples
input:

output:

THINGS TODO:
??freopen???????
????
????????????
*/
0