結果
問題 | No.1959 Prefix MinMax |
ユーザー | Drice27149 |
提出日時 | 2022-05-27 23:21:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 812 bytes |
コンパイル時間 | 416 ms |
コンパイル使用メモリ | 49,408 KB |
実行使用メモリ | 25,208 KB |
平均クエリ数 | 26.72 |
最終ジャッジ日時 | 2024-09-20 17:22:21 |
合計ジャッジ時間 | 3,031 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
25,196 KB |
testcase_01 | AC | 21 ms
25,196 KB |
testcase_02 | AC | 20 ms
24,940 KB |
testcase_03 | AC | 20 ms
24,940 KB |
testcase_04 | AC | 20 ms
24,556 KB |
testcase_05 | AC | 21 ms
24,556 KB |
testcase_06 | AC | 22 ms
25,184 KB |
testcase_07 | AC | 34 ms
25,196 KB |
testcase_08 | AC | 35 ms
25,196 KB |
testcase_09 | AC | 34 ms
24,940 KB |
testcase_10 | AC | 31 ms
25,196 KB |
testcase_11 | AC | 32 ms
24,796 KB |
testcase_12 | AC | 33 ms
24,556 KB |
testcase_13 | AC | 33 ms
24,940 KB |
testcase_14 | AC | 32 ms
24,928 KB |
testcase_15 | AC | 33 ms
24,556 KB |
testcase_16 | AC | 32 ms
24,812 KB |
testcase_17 | AC | 33 ms
24,940 KB |
testcase_18 | AC | 32 ms
25,196 KB |
testcase_19 | AC | 32 ms
25,184 KB |
testcase_20 | AC | 34 ms
24,940 KB |
testcase_21 | AC | 33 ms
24,556 KB |
testcase_22 | AC | 34 ms
24,812 KB |
testcase_23 | AC | 36 ms
25,196 KB |
testcase_24 | AC | 33 ms
25,196 KB |
testcase_25 | AC | 32 ms
24,556 KB |
testcase_26 | AC | 33 ms
24,556 KB |
testcase_27 | AC | 34 ms
24,812 KB |
testcase_28 | AC | 32 ms
25,196 KB |
testcase_29 | AC | 32 ms
25,196 KB |
testcase_30 | AC | 33 ms
24,940 KB |
testcase_31 | AC | 32 ms
25,208 KB |
ソースコード
#include <cstdio> #include <vector> using namespace std; int main() { int T; scanf("%d", &T); while (T--) { fflush(stdout); int n; scanf("%d", &n); printf("? "); for (int i = 0; i < n - 1; i++) printf("%d ", i % 2); printf("\n"); vector<int> b(n + 1); fflush(stdout); for (int i = 1; i <= n; i++) scanf("%d", &b[i]); printf("? "); for (int i = 0; i < n - 1; i++) printf("%d ", !(i % 2)); printf("\n"); fflush(stdout); vector<int> c(n + 1); for (int i = 1; i <= n; i++) scanf("%d", &c[i]); vector<int> a(n + 1); a[1] = b[1]; for (int i = 2; i <= n; i++) { if (b[i] != b[i - 1]) a[i] = b[i]; else a[i] = c[i]; } printf("! "); for (int i = 1; i <= n; i++) printf("%d ", a[i]); printf("\n"); } return 0; }