結果

問題 No.2897 2集合間距離
ユーザー n0ma_run0ma_ru
提出日時 2024-09-21 15:27:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,436 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 206,716 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-09-21 15:27:10
合計ジャッジ時間 6,203 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,680 KB
testcase_01 AC 13 ms
7,680 KB
testcase_02 AC 13 ms
7,680 KB
testcase_03 AC 14 ms
7,680 KB
testcase_04 AC 13 ms
7,680 KB
testcase_05 AC 13 ms
7,552 KB
testcase_06 WA -
testcase_07 AC 13 ms
7,680 KB
testcase_08 AC 14 ms
7,552 KB
testcase_09 AC 13 ms
7,680 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 14 ms
7,808 KB
testcase_13 AC 14 ms
7,680 KB
testcase_14 AC 19 ms
7,552 KB
testcase_15 AC 22 ms
7,680 KB
testcase_16 AC 187 ms
7,552 KB
testcase_17 AC 189 ms
7,680 KB
testcase_18 AC 191 ms
7,680 KB
testcase_19 AC 190 ms
7,680 KB
testcase_20 AC 188 ms
7,680 KB
testcase_21 AC 189 ms
7,680 KB
testcase_22 AC 185 ms
7,808 KB
testcase_23 AC 188 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ALL(v) v.begin(),v.end()
#define dbg(x) cerr << #x << ": " << (x) << endl;
#define MAX (1000)
int N,M;
vector<bitset<MAX>> P(MAX),Q(MAX);
int main() {
    cin >> N;
    for (int i = 0; i < N; ++i) {
        int x,y; cin >> x >> y;
        P[y].set(x);
    }
    cin >> M;
    for (int i = 0; i < N; ++i) {
        int x,y; cin >> x >> y;
        Q[y].set(x);
    }
    int ans = 1e9;
    vector dp(MAX, vector<int>(MAX, 1e9));
    for (int i = 0; i < MAX; ++i) {
        for (int j = 0; j < MAX; ++j) {
            if (i > 0) dp[i][j] = min(dp[i][j], dp[i-1][j] + 1);
            if (j > 0) dp[i][j] = min(dp[i][j], dp[i][j-1] + 1);
            if (Q[i].test(j)) {
                dp[i][j] = 0;
            }
            if (P[i].test(j)) {
                ans = min(ans, dp[i][j]);
            }
        }
    }
    for (int i = 0; i < MAX; ++i) {
        for (int j = 0; j < MAX; ++j) {
            dp[i][j] = 1e9;
        }
    }
    for (int i = MAX-1; i >= 0; --i) {
        for (int j = MAX-1; j >= 0; --j) {
            if (i < MAX-1) dp[i][j] = min(dp[i][j], dp[i+1][j] + 1);
            if (j  < MAX-1) dp[i][j] = min(dp[i][j], dp[i][j+1] + 1);
            if (Q[i].test(j)) {
                dp[i][j] = 0;
            }
            if (P[i].test(j)) {
                ans = min(ans, dp[i][j]);
            }
        }
    }
    cout << ans << '\n';
}
0