結果

問題 No.3107 Listening
ユーザー kotatsugamekotatsugame
提出日時 2024-04-01 21:37:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,274 bytes
コンパイル時間 1,459 ms
コンパイル使用メモリ 102,484 KB
実行使用メモリ 116,924 KB
最終ジャッジ日時 2024-09-30 22:14:59
合計ジャッジ時間 34,757 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1,202 ms
69,212 KB
testcase_04 AC 159 ms
15,440 KB
testcase_05 AC 375 ms
19,524 KB
testcase_06 AC 150 ms
18,772 KB
testcase_07 AC 935 ms
42,764 KB
testcase_08 AC 596 ms
25,896 KB
testcase_09 AC 531 ms
41,012 KB
testcase_10 AC 812 ms
71,564 KB
testcase_11 AC 1,204 ms
91,860 KB
testcase_12 AC 549 ms
27,408 KB
testcase_13 AC 981 ms
68,336 KB
testcase_14 AC 684 ms
34,784 KB
testcase_15 AC 251 ms
30,952 KB
testcase_16 AC 197 ms
15,944 KB
testcase_17 AC 445 ms
18,156 KB
testcase_18 AC 66 ms
10,956 KB
testcase_19 AC 689 ms
51,376 KB
testcase_20 AC 654 ms
60,116 KB
testcase_21 AC 1,751 ms
102,624 KB
testcase_22 AC 1,017 ms
77,408 KB
testcase_23 AC 1,743 ms
95,120 KB
testcase_24 AC 1,210 ms
94,416 KB
testcase_25 AC 1,070 ms
54,120 KB
testcase_26 AC 408 ms
18,260 KB
testcase_27 AC 487 ms
46,940 KB
testcase_28 AC 1,208 ms
83,800 KB
testcase_29 AC 1,462 ms
86,432 KB
testcase_30 AC 677 ms
35,492 KB
testcase_31 AC 805 ms
44,984 KB
testcase_32 AC 1,161 ms
74,952 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:143:17: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
  143 |         for(auto[u,v]:ans)cout<<idx[minmax(u,v)]+1<<"\n";
      |                 ^

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
#include<queue>
#include<cassert>
using namespace std;
//https://ei1333.github.io/library/graph/flow/gabow-edmonds.hpp.html
// https://qiita.com/Kutimoti_T/items/5b579773e0a24d650bdf

/**
 * @brief Gabow Edmonds(荳€闊ャ繧ー繝ゥ繝輔・譛€螟ァ繝槭ャ繝√Φ繧ー)
 * @docs docs/gabow-edmonds.md
 */
struct GabowEdmonds {

  struct edge {
    int to, idx;
  };

  vector< vector< edge > > g;
  vector< pair< int, int > > edges;
  vector< int > mate, label, first;
  queue< int > que;

  GabowEdmonds(int n) : g(n + 1), mate(n + 1), label(n + 1, -1), first(n + 1) {}

  void add_edge(int u, int v) {
    ++u, ++v;
    g[u].push_back((edge) {v, (int) (edges.size() + g.size())});
    g[v].push_back((edge) {u, (int) (edges.size() + g.size())});
    edges.emplace_back(u, v);
  }

  int find(int x) {
    if(label[first[x]] < 0) return first[x];
    first[x] = find(first[x]);
    return first[x];
  }

  void rematch(int v, int w) {
    int t = mate[v];
    mate[v] = w;
    if(mate[t] != v) return;
    if(label[v] < (int)g.size()) {
      mate[t] = label[v];
      rematch(label[v], t);
    } else {
      int x = edges[label[v] - g.size()].first;
      int y = edges[label[v] - g.size()].second;
      rematch(x, y);
      rematch(y, x);
    }
  }

  void assign_label(int x, int y, int num) {
    int r = find(x);
    int s = find(y);
    int join = 0;
    if(r == s) return;
    label[r] = -num;
    label[s] = -num;
    while(true) {
      if(s != 0) swap(r, s);
      r = find(label[mate[r]]);
      if(label[r] == -num) {
        join = r;
        break;
      }
      label[r] = -num;
    }
    int v = first[x];
    while(v != join) {
      que.push(v);
      label[v] = num;
      first[v] = join;
      v = first[label[mate[v]]];
    }
    v = first[y];
    while(v != join) {
      que.push(v);
      label[v] = num;
      first[v] = join;
      v = first[label[mate[v]]];
    }
  }

  bool augment_check(int u) {
    que = queue< int >();
    first[u] = 0;
    label[u] = 0;
    que.push(u);
    while(!que.empty()) {
      int x = que.front();
      que.pop();
      for(auto e : g[x]) {
        int y = e.to;
        if(mate[y] == 0 && y != u) {
          mate[y] = x;
          rematch(x, y);
          return true;
        } else if(label[y] >= 0) {
          assign_label(x, y, e.idx);
        } else if(label[mate[y]] < 0) {
          label[mate[y]] = x;
          first[mate[y]] = y;
          que.push(mate[y]);
        }
      }
    }
    return false;
  }

  vector< pair< int, int > > max_matching() {
    for(int i = 1; i < (int)g.size(); i++) {
      if(mate[i] != 0) continue;
      if(augment_check(i)) label.assign(g.size(), -1);
    }
    vector< pair< int, int > > ret;
    for(int i = 1; i < (int)g.size(); i++) {
      if(i < mate[i]) ret.emplace_back(i - 1, mate[i] - 1);
    }
    return ret;
  }
};
#include<map>
map<pair<int,int>,int>idx;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,M;
	cin>>N>>M;
	GabowEdmonds G(N);
	for(int i=0;i<M;i++)
	{
		int u,v;cin>>u>>v;
		u--,v--;
		G.add_edge(u,v);
		idx[minmax(u,v)]=i;
	}
	vector<pair<int,int> >ans=G.max_matching();
	cout<<ans.size()<<"\n";
	for(auto[u,v]:ans)cout<<idx[minmax(u,v)]+1<<"\n";
}
0