結果

問題 No.2301 Namorientation
ユーザー as277575as277575
提出日時 2023-05-12 23:19:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,296 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 122,164 KB
実行使用メモリ 23,152 KB
最終ジャッジ日時 2024-05-06 13:19:56
合計ジャッジ時間 14,388 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 203 ms
11,208 KB
testcase_13 WA -
testcase_14 AC 377 ms
16,616 KB
testcase_15 AC 224 ms
12,600 KB
testcase_16 AC 294 ms
14,612 KB
testcase_17 WA -
testcase_18 AC 299 ms
14,848 KB
testcase_19 WA -
testcase_20 AC 290 ms
14,668 KB
testcase_21 WA -
testcase_22 AC 305 ms
19,644 KB
testcase_23 AC 299 ms
19,440 KB
testcase_24 AC 247 ms
17,276 KB
testcase_25 AC 225 ms
20,100 KB
testcase_26 AC 291 ms
23,152 KB
testcase_27 AC 353 ms
16,636 KB
testcase_28 WA -
testcase_29 AC 358 ms
16,504 KB
testcase_30 AC 359 ms
16,640 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cmath>
#include <deque>
#include <iostream>
#include <map>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <set>

using namespace::std;


int find_cycle(int n, const vector<vector<int>>& e) {
  vector<bool> visited(n + 1);
  vector<pair<int, int>> q;
  for (int i = 1; i <= n; ++i)
    if (!visited[i]) {
      q.push_back({-1, i});
      while (!q.empty()) {
        auto [u, v] = q.back();
        q.pop_back();
        if (visited[v]) return v;
        visited[v] = 1;
        for (int w : e[v]) if (w != u) q.push_back({v, w});
      }
    }
  return -1;
}

int main() {
  ios::sync_with_stdio(false);
  long long n;
  cin >> n;
  vector<pair<int, int>> input;
  vector<vector<int>> e(n + 1);
  for (int i = 0; i < n; ++i) {
    int a, b;
    cin >> a >> b;
    input.push_back({a, b});
    e[a].push_back(b);
    e[b].push_back(a);
  }
  
  int c = find_cycle(n, e);
  
  vector<int> p(n + 1);
  vector<pair<int, int>> q {{0, c}};
  while (!q.empty()) {
    auto [u, v] = q.back();
    q.pop_back();
    if (p[v]) continue;
    p[v] = u;
    for (int w : e[v]) q.push_back({v, w});
  }
  
  for (const auto [a, b] : input)
    cout << (p[a] == b ? "->" : "<-") << endl;
  
  

  
  return 0;
}
0