結果
問題 | No.1078 I love Matrix Construction |
ユーザー | chocorusk |
提出日時 | 2020-06-12 22:53:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 308 ms / 2,000 ms |
コード長 | 2,210 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 140,456 KB |
実行使用メモリ | 69,036 KB |
最終ジャッジ日時 | 2024-06-24 05:39:18 |
合計ジャッジ時間 | 7,347 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 31 ms
13,056 KB |
testcase_03 | AC | 97 ms
28,380 KB |
testcase_04 | AC | 139 ms
37,672 KB |
testcase_05 | AC | 131 ms
32,404 KB |
testcase_06 | AC | 31 ms
12,800 KB |
testcase_07 | AC | 10 ms
6,944 KB |
testcase_08 | AC | 115 ms
32,424 KB |
testcase_09 | AC | 6 ms
6,940 KB |
testcase_10 | AC | 308 ms
69,036 KB |
testcase_11 | AC | 155 ms
39,520 KB |
testcase_12 | AC | 243 ms
57,536 KB |
testcase_13 | AC | 278 ms
64,348 KB |
testcase_14 | AC | 187 ms
46,116 KB |
testcase_15 | AC | 258 ms
61,248 KB |
testcase_16 | AC | 10 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 23 ms
10,368 KB |
testcase_19 | AC | 61 ms
19,300 KB |
testcase_20 | AC | 59 ms
19,004 KB |
testcase_21 | AC | 3 ms
6,940 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #include <utility> #include <functional> #include <time.h> #include <stack> #include <array> #define popcount __builtin_popcount using namespace std; typedef long long int ll; typedef pair<int, int> P; struct SCC{ vector<vector<int>> g, gr; int n, k; vector<int> cmp, vs; vector<bool> used; void dfs(int x){ used[x]=1; for(auto y:g[x]){ if(!used[y]) dfs(y); } vs.push_back(x); } void rdfs(int v, int k){ used[v]=1; cmp[v]=k; for(auto y:gr[v]){ if(!used[y]) rdfs(y, k); } } SCC(const vector<vector<int>> &g):g(g), n(g.size()), cmp(n), used(n){ gr.resize(n); for(int x=0; x<n; x++) for(auto y:g[x]) gr[y].push_back(x); for(int i=0; i<n; i++){ if(!used[i]) dfs(i); } fill(used.begin(), used.end(), 0); k=0; for(int i=vs.size()-1; i>=0; i--){ if(!used[vs[i]]) rdfs(vs[i], k++); } } }; int main() { int n; cin>>n; int s[505], t[505], u[505]; for(int i=0; i<n; i++) cin>>s[i], s[i]--; for(int i=0; i<n; i++) cin>>t[i], t[i]--; for(int i=0; i<n; i++) cin>>u[i]; vector<vector<int>> g(2*n*n); for(int i=0; i<n; i++){ int p=(u[i]&1), q=(u[i]>>1); for(int j=0; j<n; j++){ int x=s[i]*n+j, y=j*n+t[i]; g[x+p*n*n].push_back(y+(q^1)*n*n); g[y+q*n*n].push_back(x+(p^1)*n*n); } } SCC scc(g); int a[505][505]; for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ if(scc.cmp[i*n+j]==scc.cmp[i*n+j+n*n]){ cout<<-1<<endl; return 0; }else if(scc.cmp[i*n+j]<scc.cmp[i*n+j+n*n]){ a[i][j]=1; }else{ a[i][j]=0; } } } for(int i=0; i<n; i++){ for(int j=0; j<n; j++){ assert(a[s[i]][j]+a[j][t[i]]*2!=u[i]); } } for(int i=0; i<n; i++){ for(int j=0; j<n; j++) cout<<a[i][j]<<" "; cout<<endl; } return 0; }