結果
問題 | No.2900 Star Divine |
ユーザー | vjudge1 |
提出日時 | 2024-09-25 19:53:44 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,193 bytes |
コンパイル時間 | 2,422 ms |
コンパイル使用メモリ | 164,104 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-09-25 19:53:50 |
合計ジャッジ時間 | 3,450 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int T, x, y, m, d[N]; vector<int> ansx, ansy, g[N]; mt19937 rnd(time(0)); int rd(int l, int r){ return rnd() % (r - l + 1) + l; } void print(){ cout << ansx.size() << ' ' << ansy.size() << '\n'; for(int v : ansx) cout << v << ' '; cout << '\n'; for(int v : ansy) cout << v << ' '; cout << '\n'; } void Solve(){ cin >> x >> y >> m; for(int i = 1; i <= x; i++) g[i].clear(); for(int i = 1, u, v; i <= m; i++){ cin >> u >> v; g[v].push_back(u); } for(int i = 1; i <= y; i++){ sort(g[i].begin(), g[i].end()); g[i].erase(unique(g[i].begin(), g[i].end()), g[i].end()); } for(int i = 1; i <= 30; i++){ ansx.clear(), ansy.clear(); for(int j = 1; j <= y; j++){ int op = rd(0, 1); if(op) ansy.push_back(j); } fill(d + 1, d + x + 1, 0); for(int v : ansy){ d[v]++; } for(int j = 1; j <= x; j++){ if(d[j] % 2 == 1) ansx.push_back(j); } if(ansx.size() + ansy.size() >= (x + y + 1) / 2){ print(); return ; } } } int main(){ ios::sync_with_stdio(0), cin.tie(0); for(cin >> T; T--; Solve()){ } return 0; }