結果

問題 No.1983 [Cherry 4th Tune C] 南の島のマーメイド
ユーザー V_MelvilleV_Melville
提出日時 2022-08-29 03:26:34
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 4,000 ms
コード長 1,264 bytes
コンパイル時間 8,045 ms
コンパイル使用メモリ 360,872 KB
実行使用メモリ 51,024 KB
最終ジャッジ日時 2024-11-06 03:42:36
合計ジャッジ時間 26,866 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 14 ms
6,816 KB
testcase_09 AC 20 ms
6,816 KB
testcase_10 AC 21 ms
6,816 KB
testcase_11 AC 25 ms
6,816 KB
testcase_12 AC 15 ms
6,816 KB
testcase_13 AC 385 ms
12,416 KB
testcase_14 AC 443 ms
16,512 KB
testcase_15 AC 442 ms
13,680 KB
testcase_16 AC 245 ms
10,776 KB
testcase_17 AC 442 ms
18,048 KB
testcase_18 AC 345 ms
13,704 KB
testcase_19 AC 402 ms
20,972 KB
testcase_20 AC 376 ms
13,196 KB
testcase_21 AC 407 ms
17,420 KB
testcase_22 AC 435 ms
23,040 KB
testcase_23 AC 632 ms
24,948 KB
testcase_24 AC 648 ms
24,804 KB
testcase_25 AC 657 ms
24,960 KB
testcase_26 AC 645 ms
24,828 KB
testcase_27 AC 633 ms
24,896 KB
testcase_28 AC 631 ms
24,968 KB
testcase_29 AC 641 ms
25,084 KB
testcase_30 AC 636 ms
24,832 KB
testcase_31 AC 638 ms
24,900 KB
testcase_32 AC 630 ms
24,768 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 390 ms
10,340 KB
testcase_35 AC 559 ms
50,884 KB
testcase_36 AC 534 ms
16,656 KB
testcase_37 AC 2 ms
6,816 KB
testcase_38 AC 316 ms
6,816 KB
testcase_39 AC 563 ms
51,024 KB
testcase_40 AC 522 ms
17,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::min;
using std::vector;
using std::function;

int main() {
    int n, m, q;
    cin >> n >> m >> q;
    
    vector<vector<int>> to(n);
    rep(i, m) {
        int a, b;
        cin >> a >> b;
        --a; --b;
        to[a].push_back(b);
        to[b].push_back(a);
    }
    
    vector<int> ord(n, n);
    vector<int> low(n, n);
    dsu t(n);
    int id = 0;
    function<void(int, int)> tarjan = [&](int v, int p) {
        ord[v] = low[v] = id++;
        for (int u : to[v]) {
            if (u == p) continue;
            if (ord[u] == n) {
                tarjan(u, v);
                low[v] = min(low[v], low[u]);
                if (ord[v] < low[u]) {
                    t.merge(v, u);
                }
            }
            else {
                low[v] = min(low[v], ord[u]);
            }
        }
    };
    rep(i, n) { 
        if (ord[i] == n) tarjan(i, n);
    }
    
    rep(qi, q) {
        int a, b;
        cin >> a >> b;
        --a; --b;
        if (t.same(a, b)) puts("Yes");
        else puts("No");
    }
    
    return 0;
}
0