結果

問題 No.479 頂点は要らない
ユーザー koba-e964koba-e964
提出日時 2017-01-27 23:33:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 80 ms / 1,500 ms
コード長 967 bytes
コンパイル時間 541 ms
コンパイル使用メモリ 64,600 KB
実行使用メモリ 10,232 KB
最終ジャッジ日時 2024-06-06 05:22:55
合計ジャッジ時間 2,839 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,504 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 3 ms
5,760 KB
testcase_08 AC 3 ms
5,760 KB
testcase_09 AC 3 ms
5,760 KB
testcase_10 AC 3 ms
5,760 KB
testcase_11 AC 2 ms
5,760 KB
testcase_12 AC 3 ms
5,632 KB
testcase_13 AC 3 ms
5,760 KB
testcase_14 AC 3 ms
5,632 KB
testcase_15 AC 3 ms
5,504 KB
testcase_16 AC 3 ms
5,760 KB
testcase_17 AC 3 ms
5,760 KB
testcase_18 AC 3 ms
5,632 KB
testcase_19 AC 3 ms
5,760 KB
testcase_20 AC 3 ms
5,760 KB
testcase_21 AC 3 ms
5,760 KB
testcase_22 AC 4 ms
5,760 KB
testcase_23 AC 3 ms
5,760 KB
testcase_24 AC 4 ms
5,760 KB
testcase_25 AC 4 ms
5,888 KB
testcase_26 AC 80 ms
9,844 KB
testcase_27 AC 80 ms
9,724 KB
testcase_28 AC 70 ms
10,232 KB
testcase_29 AC 70 ms
8,244 KB
testcase_30 AC 69 ms
8,372 KB
testcase_31 AC 68 ms
8,248 KB
testcase_32 AC 69 ms
8,372 KB
testcase_33 AC 63 ms
8,340 KB
testcase_34 AC 70 ms
8,596 KB
testcase_35 AC 63 ms
7,868 KB
testcase_36 AC 39 ms
6,944 KB
testcase_37 AC 67 ms
8,760 KB
testcase_38 AC 59 ms
8,192 KB
testcase_39 AC 41 ms
7,468 KB
testcase_40 AC 50 ms
8,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)

using namespace std;
typedef vector<int> VI;
typedef pair<int, int> PI;

const int N = 100100;
VI link[N];

int main(void){
  int n, m;
  cin >> n >> m;
  vector<PI> e;
  REP(i, 0, m) {
    int a, b;
    cin >> a >> b;
    e.push_back(PI(a, b));
    link[a].push_back(e.size() - 1);
    link[b].push_back(e.size() - 1);
  }
  VI ans(n);
  for (int i = n - 1; i >= 0; --i) {
    // check if Vertex i is necessary or not
    bool usei = false;
    for (auto ei: link[i]) {
      if (e[ei].first == i) {
	// cannot avoid using i
        usei = true;
      }
    }
    if (not usei) {
      ans[i] = 0;
      continue;
    }
    ans[i] = 1;
    // eliminate all connecting edges
    for (auto ei: link[i]) {
      e[ei].first = -1;
    }
  }
  int ma = 0;
  REP(i, 0, n) {
    if (ans[i]) ma = i;
  }
  for (int i = ma; i >= 0; --i) {
    cout << ans[i];
  }
  cout << endl;
}
0