結果
問題 | No.1078 I love Matrix Construction |
ユーザー | jupiro |
提出日時 | 2020-06-13 03:00:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 474 ms / 2,000 ms |
コード長 | 3,632 bytes |
コンパイル時間 | 1,732 ms |
コンパイル使用メモリ | 142,892 KB |
実行使用メモリ | 88,936 KB |
最終ジャッジ日時 | 2024-06-24 06:19:20 |
合計ジャッジ時間 | 7,199 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 38 ms
15,932 KB |
testcase_03 | AC | 109 ms
35,808 KB |
testcase_04 | AC | 156 ms
48,556 KB |
testcase_05 | AC | 137 ms
41,620 KB |
testcase_06 | AC | 34 ms
15,264 KB |
testcase_07 | AC | 12 ms
7,936 KB |
testcase_08 | AC | 135 ms
41,020 KB |
testcase_09 | AC | 6 ms
6,944 KB |
testcase_10 | AC | 474 ms
88,936 KB |
testcase_11 | AC | 164 ms
51,116 KB |
testcase_12 | AC | 271 ms
74,140 KB |
testcase_13 | AC | 326 ms
82,700 KB |
testcase_14 | AC | 206 ms
58,184 KB |
testcase_15 | AC | 302 ms
78,884 KB |
testcase_16 | AC | 12 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 25 ms
12,416 KB |
testcase_19 | AC | 65 ms
24,264 KB |
testcase_20 | AC | 66 ms
23,836 KB |
testcase_21 | AC | 4 ms
6,940 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> #include <numeric> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; const long double PI = acos((long double)(-1)); using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; template< typename G > struct StronglyConnectedComponents { const G& g; vector<vector<int>> gg, rg; vector< int > comp, order, used; StronglyConnectedComponents(G& g) : g(g), gg(g.size()), rg(g.size()), comp(g.size(), -1), used(g.size()) { for (int i = 0; i < g.size(); i++) { for (auto e : g[i]) { gg[i].emplace_back((int)e); rg[(int)e].emplace_back(i); } } } int operator[](int k) { return comp[k]; } void dfs(int idx) { if (used[idx]) return; used[idx] = true; for (int to : gg[idx]) dfs(to); order.push_back(idx); } void rdfs(int idx, int cnt) { if (comp[idx] != -1) return; comp[idx] = cnt; for (int to : rg[idx]) rdfs(to, cnt); } void build(vector<vector<int>>& t) { for (int i = 0; i < gg.size(); i++) dfs(i); reverse(begin(order), end(order)); int ptr = 0; for (int i : order) if (comp[i] == -1) rdfs(i, ptr), ptr++; t.resize(ptr); for (int i = 0; i < g.size(); i++) { for (auto& to : g[i]) { int x = comp[i], y = comp[to]; if (x == y) continue; t[x].push_back(y); } } } }; int n; int cnv(int i, int j, int k) { int res = i * n + j; if (k) res += n * n; return res; } int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ scanf("%d", &n); vector<vector<int>> g(n * n * 2); vector<int> s(n); for (int i = 0; i < n; i++) scanf("%d", &s[i]), s[i]--; vector<int> t(n); for (int i = 0; i < n; i++) scanf("%d", &t[i]), t[i]--; vector<int> u(n); for (int i = 0; i < n; i++) scanf("%d", &u[i]); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { if (u[i] == 0) { g[cnv(s[i], j, 0)].emplace_back(cnv(j, t[i], 1)); g[cnv(j, t[i], 0)].emplace_back(cnv(s[i], j, 1)); } if (u[i] == 1) { g[cnv(s[i], j, 1)].emplace_back(cnv(j, t[i], 1)); g[cnv(j, t[i], 0)].emplace_back(cnv(s[i], j, 0)); } if (u[i] == 2) { g[cnv(s[i], j, 0)].emplace_back(cnv(j, t[i], 0)); g[cnv(j, t[i], 1)].emplace_back(cnv(s[i], j, 1)); } if (u[i] == 3) { g[cnv(s[i], j, 1)].emplace_back(cnv(j, t[i], 0)); g[cnv(j, t[i], 1)].emplace_back(cnv(s[i], j, 0)); } } } StronglyConnectedComponents<vector<vector<int>>> scc(g); vector<vector<int>> tmp; scc.build(tmp); for (int i = 0; i < n * n; i++) if (scc[i] == scc[i + n * n]) { puts("-1"); return 0; }; vector<vector<int>> a(n, vector<int>(n)); for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { int s = i * n + j; int t = s + n * n; if (scc[s] < scc[t]) { a[i][j] = 1; } else { a[i][j] = 0; } } } for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) printf("%d%c", a[i][j], " \n"[j + 1 == n]); return 0; }