結果
問題 | No.382 シャイな人たち (2) |
ユーザー | yosupot |
提出日時 | 2016-06-18 00:16:24 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,450 bytes |
コンパイル時間 | 1,111 ms |
コンパイル使用メモリ | 106,680 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 17:47:55 |
合計ジャッジ時間 | 135,711 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6,028 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 6,042 ms
5,248 KB |
testcase_03 | AC | 6,041 ms
5,248 KB |
testcase_04 | AC | 6,031 ms
6,820 KB |
testcase_05 | AC | 6,032 ms
6,816 KB |
testcase_06 | AC | 6,030 ms
6,820 KB |
testcase_07 | AC | 6,047 ms
6,820 KB |
testcase_08 | AC | 6,068 ms
6,820 KB |
testcase_09 | AC | 6,029 ms
6,820 KB |
testcase_10 | AC | 6,028 ms
6,820 KB |
testcase_11 | AC | 6,030 ms
6,816 KB |
testcase_12 | AC | 6,028 ms
6,816 KB |
testcase_13 | AC | 6,042 ms
6,820 KB |
testcase_14 | AC | 6,031 ms
6,816 KB |
testcase_15 | AC | 6,029 ms
6,816 KB |
testcase_16 | AC | 6,034 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | AC | 6,046 ms
6,820 KB |
testcase_19 | AC | 6,028 ms
6,820 KB |
testcase_20 | AC | 6,027 ms
6,820 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cassert> #include <cstring> #include <vector> #include <valarray> #include <array> #include <queue> #include <set> #include <unordered_set> #include <map> #include <unordered_map> #include <algorithm> #include <cmath> #include <complex> #include <random> using namespace std; using ll = long long; using ull = unsigned long long; constexpr int TEN(int n) {return (n==0)?1:10*TEN(n-1);} ll nex(ll S) { return (S * 12345) % 1000003; } const int MN = 130; int N; vector<int> g[MN]; int idx[MN]; namespace StopWatch { clock_t st; bool f = false; void start() { f = true; st = clock(); } int msecs() { assert(f); return (clock()-st)*1000 / CLOCKS_PER_SEC; } } void solve() { /* printf("N: %d\n", N); for (int i = 0; i < N; i++) { printf("vec %d:", i); for (int d: g[i]) { printf("%d ", d); } printf("\n"); }*/ int ans = 0; vector<int> ans_p; srand(time(NULL)); iota(idx, idx+N, 0); StopWatch::start(); while (StopWatch::msecs() < 6000) { for (int fe = 0; fe < 1000; fe++) { random_shuffle(idx, idx+N); bool used[N]; fill_n(used, N, false); int co = 0; vector<int> res; for (int i = 0; i < N; i++) { int p = idx[i]; if (!used[p]) { res.push_back(p+1); co++; for (int d: g[p]) { used[d] = true; } } } if (ans < co) { ans = co; ans_p = res; // printf("ans ref %d\n", co); } } } if (ans == N) { printf("-1\n"); return; } printf("%d\n", ans+1); int m = (int)ans_p.size(); for (int i = 0; i < m; i++) { printf("%d", ans_p[i]); if (i < m-1) { printf(" "); } else { printf("\n"); } } } int main() { ll S; cin >> S; S = nex(S); N = (S % 120) + 2; S = nex(S); ll P = S; for (int i = 0; i < N; i++) { for (int j = i+1; j < N; j++) { S = nex(S); if (S >= P) { g[i].push_back(j); g[j].push_back(i); } } } solve(); return 0; }