LOADING

加载过慢请开启缓存,浏览器默认开启

daily 2

2023/8/7 daily

CF 1198C

void solve() {
  int n, m;
  cin >> n >> m;
  for (int i = 0; i <= 3 * n; ++i) status[i] = 0;
  vector<int> ans;
  auto calc = [&]() {
    for (int i = 1; i <= m; ++i) {
      int u, v;
      cin >> u >> v;
      if (!status[u] && !status[v]) {
        ans.push_back(i);
        status[u] = status[v] = 1;
      }
    }
    if (ans.size() >= n) {
      return true;
    }
    ans.clear();
    for (int i = 1; i <= 3 * n; ++i) {
      if (!status[i]) {
        ans.push_back(i);
      }
    }
    return false;
  };
  if (calc()) {
    cout << "Matching \n";
  } else {
    cout << "IndSet"
         << "\n";
  }
  for (int i = 0; i < n; ++i) {
    cout << ans[i] << " \n"[i == n - 1];
  }
  return;
}

CF 1207D