結果

問題 No.479 頂点は要らない
ユーザー ei1333333ei1333333
提出日時 2017-01-27 23:58:32
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 1,500 ms
コード長 535 bytes
コンパイル時間 1,862 ms
コンパイル使用メモリ 162,760 KB
実行使用メモリ 9,176 KB
最終ジャッジ日時 2024-06-06 05:53:20
合計ジャッジ時間 3,769 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 4 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 4 ms
6,944 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 4 ms
6,944 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 71 ms
8,960 KB
testcase_27 AC 71 ms
8,960 KB
testcase_28 AC 63 ms
9,176 KB
testcase_29 AC 64 ms
7,680 KB
testcase_30 AC 66 ms
7,680 KB
testcase_31 AC 65 ms
7,680 KB
testcase_32 AC 66 ms
7,808 KB
testcase_33 AC 59 ms
7,680 KB
testcase_34 AC 64 ms
8,064 KB
testcase_35 AC 61 ms
7,552 KB
testcase_36 AC 38 ms
6,944 KB
testcase_37 AC 62 ms
8,064 KB
testcase_38 AC 54 ms
7,680 KB
testcase_39 AC 43 ms
7,168 KB
testcase_40 AC 47 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
  int N, M;
  vector< int > g[100000];
  cin >> N >> M;
  while(M--) {
    int A, B;
    cin >> A >> B;
    g[A].push_back(B);
    g[B].push_back(A);
  }

  string S = string(N, '1');
  bool st[100000];
  memset(st, true, sizeof(st));
  for(int i = N - 1; i >= 0; i--) {
    st[i] = true;
    for(auto &to : g[i]) st[i] &= st[to];
    st[i] ^= 1;
    if(st[i] == 0) S[i] = '0';
  }
  while(S.back() == '0') S.pop_back();
  reverse(begin(S), end(S));
  cout << S << endl;

}
0