結果
問題 | No.1401 全自動マクロの作り方 |
ユーザー | mtsd |
提出日時 | 2021-02-19 23:56:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,552 bytes |
コンパイル時間 | 1,496 ms |
コンパイル使用メモリ | 132,748 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 00:13:55 |
合計ジャッジ時間 | 11,189 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <chrono> #include <climits> #include <cmath> #include <complex> #include <cstring> #include <deque> #include <functional> #include <iostream> #include <iomanip> #include <list> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <unordered_map> #include <unordered_set> #include <vector> #include <cstdint> using namespace std; typedef long long ll; typedef vector<int> vi; typedef pair<int,int> pii; #define MP make_pair #define PB push_back #define inf 1000000007 #define rep(i,n) for(int i = 0; i < (int)(n); ++i) #define all(x) (x).begin(),(x).end() template<typename A, size_t N, typename T> void Fill(A (&array)[N], const T &val){ std::fill( (T*)array, (T*)(array+N), val ); } template<class T> inline bool chmax(T &a, T b){ if(a<b){ a = b; return true; } return false; } template<class T> inline bool chmin(T &a, T b){ if(a>b){ a = b; return true; } return false; } class tsort { public: int V; vector<vector<int> > G; vector<int> deg,res; tsort(int node_size) : V(node_size), G(V), deg(V, 0){} void add_edge(int from,int to){ G[from].push_back(to); deg[to]++; } bool solve() { queue<int> que; for(int i = 0; i < V; i++){ if(deg[i] == 0){ que.push(i); } } while(!que.empty()){ int p = que.front(); que.pop(); res.push_back(p); for(int v : G[p]){ if(--deg[v] == 0){ que.push(v); } } } return (*max_element(deg.begin(),deg.end()) == 0); } }; vector<vector<int> > a; int main(){ int n; cin >> n; a.resize(n); vector<int>res; tsort ts(2000); set<int> st; rep(i,n){ int d; cin >> d; a[i].resize(d); rep(z,d){ cin >> a[i][z]; a[i][z]--; if(d!=1){ if(z==d-1){ if(a[i][z]!=a[i][0]){ ts.add_edge(a[i][0],a[i][z]); } st.insert(a[i][z]); } } } } if(!ts.solve()){ assert(0); cout << 0 << endl; }else{ cout << 2000 << endl; auto X = ts.res; int id = -1; rep(i,2000){ if(st.count(X[i])){ id = i; } } rep(i,2000){ if(id==i)continue; cout << X[i]+1 << " "; } cout << X[id]+1; cout << endl; } return 0; }