結果

問題 No.918 LISGRID
ユーザー finefine
提出日時 2019-10-26 00:14:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 1,902 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 177,700 KB
実行使用メモリ 13,736 KB
最終ジャッジ日時 2024-09-13 11:11:05
合計ジャッジ時間 5,953 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 24 ms
9,472 KB
testcase_02 AC 10 ms
5,376 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 10 ms
5,632 KB
testcase_05 AC 33 ms
10,624 KB
testcase_06 AC 30 ms
9,984 KB
testcase_07 AC 45 ms
13,280 KB
testcase_08 AC 26 ms
9,216 KB
testcase_09 AC 33 ms
10,708 KB
testcase_10 AC 36 ms
10,880 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 38 ms
11,392 KB
testcase_13 AC 30 ms
9,984 KB
testcase_14 AC 41 ms
12,840 KB
testcase_15 AC 45 ms
13,736 KB
testcase_16 AC 16 ms
7,040 KB
testcase_17 AC 17 ms
7,472 KB
testcase_18 AC 17 ms
7,040 KB
testcase_19 AC 6 ms
6,940 KB
testcase_20 AC 24 ms
8,700 KB
testcase_21 AC 7 ms
6,944 KB
testcase_22 AC 6 ms
6,944 KB
testcase_23 AC 14 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,944 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 23 ms
8,448 KB
testcase_38 AC 16 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;

using Graph = vector< vector<int> >;

bool dfs(int cur, vector<int>& memo, Graph& g, vector<int>& order) {
    memo[cur] = 1;
    for (int nex : g[cur]) {
        if (memo[nex] == 2) continue;
        if (memo[nex] == 1) return false;
        if (!dfs(nex, memo, g, order)) return false;
    }
    memo[cur] = 2;
    order.push_back(cur);
    return true;
}

bool tsort(Graph& g, vector<int>& order) {
    vector<int> memo(g.size(), 0);
    for (int i = 0; i < g.size(); i++) {
        if (memo[i] != 0) continue;
        if (!dfs(i, memo, g, order)) return false;
    }
    reverse(order.begin(), order.end());
    return true;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int H, W;
    cin >> H >> W;
    vector<int> a(H), b(W);
    for (int i = 0; i < H; i++) cin >> a[i];
    sort(a.begin(), a.end());

    for (int j = 0; j < W; j++) cin >> b[j];
    sort(b.begin(), b.end());

    Graph g(H * W);
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < a[i] - 1; j++) {
            g[i * W + j].push_back(i * W + j + 1);
        }

        for (int j = W - 1; j >= a[i]; j--) {
            g[i * W + j].push_back(i * W + j - 1);
        }
    }

    for (int j = 0; j < W; j++) {
        for (int i = 0; i < b[j] - 1; i++) {
            g[i * W + j].push_back((i + 1) * W + j);
        }

        for (int i = H - 1; i >= b[j]; i--) {
            g[i * W + j].push_back((i - 1) * W + j);
        }
    }

    vector<int> order;
    assert(tsort(g, order));

    vector< vector<int> > ans(H, vector<int>(W));
    for (int i = 0; i < H * W; i++) {
        int h = order[i] / W;
        int w = order[i] % W;
        ans[h][w] = i + 1;
    }

    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cout << ans[i][j] << " \n"[j + 1 == W];
        }
    }
    return 0;
}
0