結果

問題 No.2900 Star Divine
ユーザー vjudge1vjudge1
提出日時 2024-09-25 19:42:40
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,194 bytes
コンパイル時間 2,381 ms
コンパイル使用メモリ 164,200 KB
実行使用メモリ 12,572 KB
最終ジャッジ日時 2024-09-25 19:42:50
合計ジャッジ時間 5,935 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
11,264 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

const int MAXN = 100001;

int t, n[2], m, ans, ans2;
mt19937_64 rnd(time(0));
bool vis[MAXN], vis2[MAXN];
vector<int> e[MAXN];

bool check() {
  int cnt = 0;
  for(int i = 1; i <= n[1]; ++i) {
    vis[i] = rnd() % 2;
    cnt += vis[i];
  }
  for(int i = 1; i <= n[0]; ++i) {
    int res = 0;
    for(int v : e[i]) {
      res += vis[v];
    }
    vis2[i] = res % 2;
    cnt += res % 2;
  }
  return cnt >= (n[0] + n[1] + 1) / 2;
}

void Solve() {
  cin >> n[0] >> n[1] >> m;
  for(int i = 1; i <= n[0]; ++i) {
    e[i].clear();
  }
  for(int i = 1, u, v; i <= m; ++i) {
    cin >> u >> v;
    e[u].emplace_back(v);
  }
  for(; !check(); ) {
  }
  ans = ans2 = 0;
  for(int i = 1; i <= n[0]; ++i) {
    ans += vis2[i];
  }
  for(int i = 1; i <= n[1]; ++i) {
    ans2 += vis[i];
  }
  cout << ans << " " << ans2 << "\n";
  for(int i = 1; i <= n[0]; ++i) {
    if(vis2[i]) {
      cout << i << " ";
    }
  }
  cout << "\n";
  for(int i = 1; i <= n[1]; ++i) {
    if(vis[i]) {
      cout << i << " ";
    }
  }
  cout << "\n\n";
}

int main() {
  ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
  for(cin >> t; t--; Solve()) {
  }
  return 0;
}
0