結果

問題 No.2301 Namorientation
ユーザー Jeroen Op de BeekJeroen Op de Beek
提出日時 2023-05-12 21:37:20
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,299 bytes
コンパイル時間 2,224 ms
コンパイル使用メモリ 209,044 KB
実行使用メモリ 29,076 KB
最終ジャッジ日時 2024-11-28 17:36:21
合計ジャッジ時間 102,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 AC 2 ms
10,148 KB
testcase_09 TLE -
testcase_10 AC 2 ms
13,640 KB
testcase_11 AC 2 ms
16,544 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 135 ms
21,016 KB
testcase_23 AC 133 ms
27,000 KB
testcase_24 AC 109 ms
19,036 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define all(x) begin(x),end(x)
template<typename A, typename B> ostream& operator<<(ostream &os, const pair<A, B> &p) { return os << '(' << p.first << ", " << p.second << ')'; }
template<typename T_container, typename T = typename enable_if<!is_same<T_container, string>::value, typename T_container::value_type>::type> ostream& operator<<(ostream &os, const T_container &v) { string sep; for (const T &x : v) os << sep << x, sep = " "; return os; }
#define debug(a) cerr << "(" << #a << ": " << a << ")\n";
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef pair<int,int> pi;
const int mxN = 1e5+1, oo = 1e9;
int main() {
    int n; cin >> n;
    vector<vector<pair<int,int>>> adj(n);
    for(int i=0;i<n;++i) {
        int a,b; cin >> a >> b;
        --a,--b;
        adj[a].push_back({b,i});
        adj[b].push_back({a,-i-1});
    }
    int at = 0, from=-1;
    vector<bool> ans(n);
    while(at!=0 or from==-1) {
        
        for(auto [to,id] : adj[at]) {
            if(to!=from) {
                if(id>=0) ans[id]=1;
                from = at;
                at = to;
                break;
            } 

        }
    }
    for(auto b : ans) {
        if(b) cout << "->\n";
        else cout << "<-\n";
    }
}
0