結果
問題 | No.2900 Star Divine |
ユーザー | 👑 hos.lyric |
提出日時 | 2024-09-20 21:56:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,573 bytes |
コンパイル時間 | 1,000 ms |
コンパイル使用メモリ | 115,680 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-20 21:57:04 |
合計ジャッジ時間 | 4,483 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
ソースコード
#include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <functional> #include <iostream> #include <limits> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> ostream &operator<<(ostream &os, const vector<T> &as) { const int sz = as.size(); os << "["; for (int i = 0; i < sz; ++i) { if (i >= 256) { os << ", ..."; break; } if (i > 0) { os << ", "; } os << as[i]; } return os << "]"; } template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> bool chmin(T &t, const T &f) { if (t > f) { t = f; return true; } return false; } template <class T> bool chmax(T &t, const T &f) { if (t < f) { t = f; return true; } return false; } #define COLOR(s) ("\x1b[" s "m") #include <chrono> #ifdef LOCAL mt19937_64 rng(58); #else mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count()); #endif int N0, N1, M; vector<int> A, B; int main() { for (int numCases; ~scanf("%d", &numCases); ) { for (int caseId = 1; caseId <= numCases; ++caseId) { scanf("%d%d%d", &N0, &N1, &M); A.resize(M); B.resize(M); for (int i = 0; i < M; ++i) { scanf("%d%d", &A[i], &B[i]); --A[i]; --B[i]; } for (; ; ) { vector<int> on0(N0, 0), on1(N1, 0); for (int v = 0; v < N1; ++v) on1[v] = rng() & 1; for (int i = 0; i < M; ++i) if (on1[B[i]]) on0[A[i]] ^= 1; int cnt[2] = {}; for (int u = 0; u < N0; ++u) cnt[0] += on0[u]; for (int v = 0; v < N1; ++v) cnt[1] += on1[v]; if (cnt[0] + cnt[1] >= (N0 + N1 + 1) / 2) { printf("%d %d\n", cnt[0], cnt[1]); { int ou = 0; for (int u = 0; u < N0; ++u) if (on0[u]) { if (ou++) printf(" "); printf("%d", u + 1); } puts(""); } { int ou = 0; for (int v = 0; v < N1; ++v) if (on1[v]) { if (ou++) printf(" "); printf("%d", v + 1); } puts(""); } break; } } } #ifndef LOCAL break; #endif } return 0; }