結果
問題 | No.2828 Remainder Game |
ユーザー | anago-pie |
提出日時 | 2024-08-04 02:59:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,550 bytes |
コンパイル時間 | 2,763 ms |
コンパイル使用メモリ | 209,236 KB |
実行使用メモリ | 25,208 KB |
平均クエリ数 | 44.90 |
最終ジャッジ日時 | 2024-08-04 02:59:56 |
合計ジャッジ時間 | 7,955 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 69 ms
24,824 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 76 ms
25,208 KB |
testcase_11 | RE | - |
testcase_12 | AC | 64 ms
24,952 KB |
testcase_13 | AC | 67 ms
24,824 KB |
testcase_14 | WA | - |
testcase_15 | AC | 61 ms
24,568 KB |
testcase_16 | AC | 60 ms
25,208 KB |
testcase_17 | AC | 74 ms
24,568 KB |
testcase_18 | AC | 63 ms
24,952 KB |
testcase_19 | AC | 63 ms
24,812 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for(int i=0; i<n; i++) #define debug 0 #define YES cout << "Yes" << endl; #define NO cout << "No" << endl; using ll = long long; using ld = long double; const int mod = 998244353; const int MOD = 1000000007; const double pi = atan2(0, -1); const int inf = 1 << 31 - 1; const ll INF = 1LL << 63 - 1; #include <time.h> #include <chrono> //vectorの中身を空白区切りで出力 template<typename T> void printv(vector<T> v) { for (int i = 0; i < v.size(); i++) { cout << v[i]; if (i < v.size() - 1) { cout << " "; } } cout << endl; } //vectorの中身を改行区切りで出力 template<typename T> void print1(vector<T> v) { for (auto x : v) { cout << x << endl; } } //二次元配列を出力 template<typename T> void printvv(vector<vector<T>> vv) { for (vector<T> v : vv) { printv(v); } } //vectorを降順にソート template<typename T> void rsort(vector<T>& v) { sort(v.begin(), v.end()); reverse(v.begin(), v.end()); } //昇順priority_queueを召喚 template<typename T> struct rpriority_queue { priority_queue<T, vector<T>, greater<T>> pq; void push(T x) { pq.push(x); } void pop() { pq.pop(); } T top() { return pq.top(); } size_t size() { return pq.size(); } bool empty() { return pq.empty(); } }; //mod mod下で逆元を算出する //高速a^n計算(mod ver.) ll power(ll a, ll n) { if (n == 0) { return 1; } else if (n % 2 == 0) { ll x = power(a, n / 2); x *= x; x %= mod; return x; } else { ll x = power(a, n - 1); x *= a; x %= mod; return x; } } //フェルマーの小定理を利用 ll modinv(ll p) { return power(p, mod - 2) % mod; } int main() { int N; cin >> N; queue<vector<int>> q; vector<int> ans; q.push({ 0,N-1,5 }); int cnt = 0; while (ans.size() < 5 && cnt < 29) { cnt++; int mn = q.front()[0], mx = q.front()[1], num = q.front()[2]; q.pop(); int k = -1; int K = (mx - mn + 1)/2; cout << N << " " << K << endl; rep(i, K) { cout << mn + i << " "; k = max(k, mn + i); } cout << endl; int rep; cin >> rep; if (rep > 0) { if (k == mn) { rep(i, rep) { ans.push_back(mn); } } else { q.push({ mn, k, rep }); } } if (rep < num) { if (k + 1 == mx) { rep(i, num - rep) { ans.push_back(mx); } } else { q.push({ k + 1, mx, num - rep }); } } } int sum = 0; rep(i, 5) { sum += ans[i]; if (ans[i] == 0) { sum += N; } } cout << 0 << " " << 1 << endl << sum << endl; }