結果
問題 | No.2879 Range Flip Queries |
ユーザー | Iroha_3856 |
提出日時 | 2024-07-26 15:55:52 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 813 bytes |
コンパイル時間 | 513 ms |
コンパイル使用メモリ | 39,312 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-08 12:00:50 |
合計ジャッジ時間 | 6,929 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 120 ms
6,940 KB |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC optimize("unroll-loops") #pragma GCC target("avx512f") #pragma GCC target("avx512vl") #include <cstdio> unsigned long long A[500000 / 64 + 1]; int main() { unsigned N, Q; scanf("%u%u", &N, &Q); for(unsigned i = 0; i != N; ++i) { unsigned a; scanf("%u", &a); if(a) A[i / 64] |= (1ull << (i % 64)); } for(unsigned i = 0; i != Q; ++i) { unsigned L,R; scanf("%u%u", &L, &R); --L; unsigned l = (L + 63) / 64; unsigned r = R / 64; for(unsigned j = l; j < r; ++j) A[j] = ~A[j]; for(unsigned j = L; j != l * 64; ++j) A[j / 64] ^= 1ull << (j % 64); for(unsigned j = r * 64; j != R; ++j) A[j / 64] ^= 1ull << (j % 64); } for(unsigned i = 0; i != N; ++i) { putchar((A[i / 64] >> (i % 64) & 1) ? '0': '1'); putchar(' '); } }