結果

問題 No.2301 Namorientation
ユーザー SSRSSSRS
提出日時 2023-05-12 21:29:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 3,000 ms
コード長 1,708 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 181,204 KB
実行使用メモリ 23,548 KB
最終ジャッジ日時 2024-05-06 11:06:20
合計ジャッジ時間 17,003 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 283 ms
14,848 KB
testcase_13 AC 258 ms
13,884 KB
testcase_14 AC 491 ms
22,528 KB
testcase_15 AC 319 ms
16,128 KB
testcase_16 AC 427 ms
19,840 KB
testcase_17 AC 293 ms
15,360 KB
testcase_18 AC 432 ms
20,256 KB
testcase_19 AC 235 ms
13,184 KB
testcase_20 AC 425 ms
19,968 KB
testcase_21 AC 316 ms
16,000 KB
testcase_22 AC 402 ms
21,228 KB
testcase_23 AC 397 ms
21,084 KB
testcase_24 AC 337 ms
18,108 KB
testcase_25 AC 283 ms
18,884 KB
testcase_26 AC 377 ms
23,548 KB
testcase_27 AC 511 ms
22,784 KB
testcase_28 AC 504 ms
22,656 KB
testcase_29 AC 494 ms
22,656 KB
testcase_30 AC 518 ms
22,728 KB
testcase_31 AC 519 ms
22,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<vector<pair<int, int>>> E(N);
  for (int i = 0; i < N; i++){
    int A, B;
    cin >> A >> B;
    A--;
    B--;
    E[A].push_back(make_pair(i, B));
    E[B].push_back(make_pair(i, A));
  }
  vector<int> d(N);
  for (int i = 0; i < N; i++){
    d[i] = E[i].size();
  }
  vector<string> ans(N);
  queue<int> Q;
  for (int i = 0; i < N; i++){
    if (d[i] == 1){
      Q.push(i);
    }
  }
  vector<bool> used(N, false);
  while (!Q.empty()){
    int v = Q.front();
    Q.pop();
    used[v] = true;
    for (auto e : E[v]){
      int w = e.second;
      if (d[w] > 1){
        if (v < w){
          ans[e.first] = "->";
        } else {
          ans[e.first] = "<-";
        }
        d[w]--;
        if (d[w] == 1){
          Q.push(w);
        }
      }
    }
  }
  for (int i = 0; i < N; i++){
    if (!used[i]){
      int v = i;
      used[v] = true;
      while (true){
        bool ok = false;
        for (auto e : E[v]){
          int w = e.second;
          if (!used[w]){
            if (v < w){
              ans[e.first] = "->";
            } else {
              ans[e.first] = "<-";
            }
            used[w] = true;
            v = w;
            ok = true;
            break;
          }
        }
        if (!ok){
          for (auto e : E[v]){
            int w = e.second;
            if (w == i){
              if (v < w){
                ans[e.first] = "->";
              } else {
                ans[e.first] = "<-";
              }
              break;
            }
          }
          break;
        }
      }
    }
  }
  for (int i = 0; i < N; i++){
    cout << ans[i] << endl;
  }
}
0