結果

問題 No.2464 To DAG
ユーザー t98slidert98slider
提出日時 2023-09-09 11:09:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,356 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 177,688 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-06-27 04:18:03
合計ジャッジ時間 15,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 263 ms
58,240 KB
testcase_03 AC 220 ms
21,820 KB
testcase_04 AC 214 ms
18,884 KB
testcase_05 AC 208 ms
18,628 KB
testcase_06 AC 200 ms
18,420 KB
testcase_07 AC 143 ms
14,028 KB
testcase_08 AC 174 ms
13,764 KB
testcase_09 AC 145 ms
12,100 KB
testcase_10 AC 152 ms
11,776 KB
testcase_11 AC 105 ms
9,252 KB
testcase_12 AC 82 ms
8,488 KB
testcase_13 AC 100 ms
8,976 KB
testcase_14 AC 135 ms
14,560 KB
testcase_15 AC 191 ms
18,296 KB
testcase_16 AC 105 ms
11,492 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 52 ms
9,124 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 72 ms
7,424 KB
testcase_23 AC 71 ms
7,040 KB
testcase_24 AC 73 ms
8,192 KB
testcase_25 AC 73 ms
8,064 KB
testcase_26 AC 36 ms
6,688 KB
testcase_27 AC 217 ms
22,352 KB
testcase_28 AC 223 ms
22,340 KB
testcase_29 AC 212 ms
21,620 KB
testcase_30 AC 153 ms
14,048 KB
testcase_31 AC 127 ms
12,700 KB
testcase_32 AC 121 ms
11,968 KB
testcase_33 AC 202 ms
19,348 KB
testcase_34 AC 90 ms
11,516 KB
testcase_35 AC 59 ms
7,308 KB
testcase_36 AC 58 ms
6,912 KB
testcase_37 AC 53 ms
6,656 KB
testcase_38 AC 52 ms
6,656 KB
testcase_39 AC 12 ms
11,520 KB
testcase_40 AC 12 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<vector<pair<int,int>>> g(n);
    for(int i = 0; i < m; i++){
        int u, v;
        cin >> u >> v;
        u--, v--;
        g[u].emplace_back(v, 0);
    }

    vector<int> idx(n);
    vector<bool> used(n), visited(n);

    auto dfs = [&](auto dfs, int v) -> int {
        if(used[v]) return -1;
        if(visited[v]) return v;
        visited[v] = true;
        for(int &j = idx[v]; j < g[v].size(); j++){
            int u, c;
            tie(u, c) = g[v][j];
            if(c == 1) continue;
            int res = dfs(dfs, u);
            if(res != -1){
                g[v][j] = make_pair(u, 1);
                if(res != v){
                    visited[v] = false;
                    return res;
                }
            }
        }
        visited[v] = false;
        used[v] = true;
        return -1;
    };

    for(int v = 0; v < n; v++) dfs(dfs, v);

    vector<pair<int,int>> edge;
    for(int v = 0; v < n; v++){
        for(auto &&pa : g[v]){
            if(pa.second) continue;
            edge.emplace_back(v, pa.first);
        }
    }
    cout << n << " " << edge.size() << '\n';
    for(auto &&pa : edge){
        cout << pa.first + 1 << ' ' << pa.second + 1 << '\n';
    }
}
0