結果
問題 | No.918 LISGRID |
ユーザー | はまやんはまやん |
提出日時 | 2019-10-26 08:34:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,949 bytes |
コンパイル時間 | 2,583 ms |
コンパイル使用メモリ | 210,788 KB |
実行使用メモリ | 13,728 KB |
最終ジャッジ日時 | 2024-09-13 23:38:26 |
合計ジャッジ時間 | 7,823 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 27 ms
9,484 KB |
testcase_02 | AC | 11 ms
6,016 KB |
testcase_03 | AC | 14 ms
6,436 KB |
testcase_04 | AC | 12 ms
5,664 KB |
testcase_05 | WA | - |
testcase_06 | AC | 36 ms
10,352 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 37 ms
11,148 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 46 ms
12,700 KB |
testcase_15 | AC | 53 ms
13,728 KB |
testcase_16 | AC | 19 ms
7,316 KB |
testcase_17 | AC | 21 ms
7,732 KB |
testcase_18 | AC | 19 ms
7,476 KB |
testcase_19 | AC | 7 ms
5,376 KB |
testcase_20 | AC | 25 ms
8,948 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 16 ms
6,792 KB |
testcase_24 | AC | 3 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 3 ms
5,376 KB |
testcase_35 | AC | 4 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 24 ms
8,796 KB |
testcase_38 | AC | 17 ms
6,880 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- // トポロジカルソートする O(n) // 返り値が true の時のみ意味を持つ(false の場合は閉路) struct TopologicalSort { vector<vector<int>> E; TopologicalSort(int N) { E.resize(N); } void add_edge(int a, int b) { E[a].push_back(b); } bool visit(int v, vector<int>& order, vector<int>& color) { color[v] = 1; for (int u : E[v]) { if (color[u] == 2) continue; if (color[u] == 1) return false; if (!visit(u, order, color)) return false; } order.push_back(v); color[v] = 2; return true; } bool sort(vector<int>& order) { int n = E.size(); vector<int> color(n); for (int u = 0; u < n; u++) if (!color[u] && !visit(u, order, color)) return false; reverse(order.begin(), order.end()); return true; } }; /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int H, W, A[404], B[404]; int ans[404][404]; //--------------------------------------------------------------------------------------------------- void _main() { cin >> H >> W; rep(y, 0, H) cin >> A[y]; rep(x, 0, W) cin >> B[x]; sort(A, A + H, greater<int>()); sort(B, B + H, greater<int>()); TopologicalSort ts(H * W); rep(y, 0, H) { rep(x, 0, A[y] - 1) ts.add_edge(y * W + x, y * W + x + 1); rep(x, A[y] - 1, W - 1) ts.add_edge(y * W + x + 1, y * W + x); } rep(x, 0, W) { rep(y, 0, B[x] - 1) ts.add_edge(y * W + x, (y + 1) * W + x); rep(y, B[x] - 1, H - 1) ts.add_edge((y + 1) * W + x, y * W + x); } vector<int> ord; ts.sort(ord); int num = 1; fore(i, ord) { int x = i % W; int y = i / W; ans[y][x] = num; num++; } rep(y, 0, H) { rep(x, 0, W) { if(x) printf(" "); printf("%d", ans[y][x]); } printf("\n"); } }