結果
問題 | No.583 鉄道同好会 |
ユーザー | ldsyb |
提出日時 | 2017-10-28 00:48:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 59 ms / 2,000 ms |
コード長 | 1,756 bytes |
コンパイル時間 | 1,812 ms |
コンパイル使用メモリ | 180,756 KB |
実行使用メモリ | 5,980 KB |
最終ジャッジ日時 | 2024-11-22 00:07:00 |
合計ジャッジ時間 | 2,802 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
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 | 16 ms
5,248 KB |
testcase_12 | AC | 22 ms
5,248 KB |
testcase_13 | AC | 21 ms
5,248 KB |
testcase_14 | AC | 22 ms
5,248 KB |
testcase_15 | AC | 27 ms
5,248 KB |
testcase_16 | AC | 50 ms
5,972 KB |
testcase_17 | AC | 59 ms
5,980 KB |
testcase_18 | AC | 59 ms
5,880 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template <typename T> struct graph { struct edge { int from, to; T cost; }; vector<edge> edges; vector<vector<int>> g; int n; graph(int n) : n(n) { g.resize(n); } virtual void add(int from, int to, T cost) = 0; }; template <typename T> struct undirected_graph : graph<T> { using graph<T>::edges; using graph<T>::g; using graph<T>::n; undirected_graph(int n) : graph<T>(n) { } void add(int from, int to, T cost = 1) { assert(0 <= from && from < n && 0 <= to && to < n); g[from].emplace_back(edges.size()); g[to].emplace_back(edges.size()); edges.push_back({from, to, cost}); } }; template <typename T> vector<T> dijkstra(const graph<T> &g, int start) { assert(0 <= start && start < g.n); vector<T> dist(g.n, numeric_limits<T>::max()); priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> s; dist[start] = 0; s.emplace(dist[start], start); while (!s.empty()) { T expected = s.top().first; int i = s.top().second; s.pop(); if (expected != dist[i]) { continue; } for (int id : g.g[i]) { auto &e = g.edges[id]; int to = e.from ^ e.to ^ i; if (dist[i] + e.cost < dist[to]) { dist[to] = dist[i] + e.cost; s.emplace(dist[to], to); } } } return dist; } int main() { int n, m; cin >> n >> m; undirected_graph<int> g(n); for (int i = 0; i < m; i++) { int from, to; cin >> from >> to; g.add(from, to); } auto d = dijkstra(g, g.edges[0].from); for (auto &e : g.edges) { if (d[e.from] == numeric_limits<int>::max()) { cout << "NO" << endl; return 0; } } int puni = 0; for (auto &i : g.g) { if (i.size() & 1) { puni++; } } cout << (puni <= 2 ? "YES" : "NO") << endl; return 0; }