結果
問題 | No.1370 置換門松列 |
ユーザー | 🍮かんプリン |
提出日時 | 2021-01-29 22:23:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,251 bytes |
コンパイル時間 | 2,058 ms |
コンパイル使用メモリ | 179,352 KB |
実行使用メモリ | 9,204 KB |
最終ジャッジ日時 | 2024-11-08 04:16:31 |
合計ジャッジ時間 | 4,051 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 49 ms
9,072 KB |
testcase_22 | AC | 36 ms
8,192 KB |
testcase_23 | AC | 46 ms
8,460 KB |
testcase_24 | AC | 17 ms
5,248 KB |
testcase_25 | AC | 53 ms
9,076 KB |
testcase_26 | AC | 52 ms
9,204 KB |
testcase_27 | AC | 27 ms
8,064 KB |
testcase_28 | AC | 29 ms
8,064 KB |
testcase_29 | AC | 25 ms
5,248 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2021.01.29 22:23:35 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; struct DAG { private: struct Edge { int to; }; std::vector<std::vector<Edge>> graph; bool is_dag = false; std::vector<int> sorted; int V; public: DAG(int v) { assert(v > 0); V = v; graph.resize(v); } void add_edge(int from, int to) { graph[from].push_back({to}); } std::vector<int> topological_sort() { std::stack<int> sta; std::vector<int> in(V, 0); int used_cnt = 0; for (int i = 0; i < V; i++) { for (Edge e : graph[i]) { in[e.to]++; } } for (int i = 0; i < V; i++) if (in[i] == 0) { sta.push(i); used_cnt++; } while (!sta.empty()) { int p = sta.top(); sta.pop(); sorted.push_back(p); for (Edge e : graph[p]) { int v = e.to; in[v]--; if (in[v] == 0) { sta.push(v); used_cnt++; } } } if (used_cnt == V) { return sorted; } else { return std::vector<int>(0); } } vector<Edge>& operator[](int x) { return graph[x]; } }; bool kadomatsu(int a,int b,int c) { return a != c && ((a < b && b > c) || (a > b && b < c)); } int main() { int n,m;cin >> n >> m; vector<int> a(n); for (int i = 0; i < n; i++) { cin >> a[i]; } DAG g(m); for (int i = 1; i < n; i++) { if (i % 2 == 1) { g.add_edge(a[i-1]-1,a[i]-1); } else { g.add_edge(a[i]-1,a[i-1]-1); } } auto p = g.topological_sort(); if (p.size() == 0) { puts("No"); } else { puts("Yes"); vector<int> ans(m); for (int i = 0; i < p.size(); i++) { ans[p[i]] = i+1; } for (int i = 0; i < ans.size(); i++) { cout << ans[i] << " "; } cout << endl; } return 0; }