結果

問題 No.2879 Range Flip Queries
ユーザー Iroha_3856Iroha_3856
提出日時 2024-07-26 15:39:31
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 590 bytes
コンパイル時間 3,001 ms
コンパイル使用メモリ 103,168 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-09-08 12:01:17
合計ジャッジ時間 42,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,880 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 69 ms
6,944 KB
testcase_04 AC 70 ms
6,940 KB
testcase_05 AC 71 ms
6,940 KB
testcase_06 AC 74 ms
6,940 KB
testcase_07 AC 72 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1,350 ms
6,940 KB
testcase_14 AC 1,495 ms
6,940 KB
testcase_15 AC 578 ms
6,940 KB
testcase_16 AC 194 ms
6,940 KB
testcase_17 AC 1,048 ms
6,944 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx512f")
#pragma GCC target("avx512vl")

#include <cstdio>
char A[500000];
int main() {
  unsigned N,Q; scanf("%u%u", &N, &Q);
  for(unsigned i = 0; i != N; ++i) {
    unsigned a; scanf("%u", &a);
    A[i] = (a == 0 ? 0 : 0xff);
  }
  for(unsigned i = 0; i != Q; ++i) {
    unsigned L,R; scanf("%u%u", &L, &R);
    --L;
    unsigned len = R - L;
    for(unsigned j = 0; j != len; ++j) A[j+L] = ~A[j+L];
  }
  for(unsigned i = 0; i != N; ++i) {
    putchar(A[i] == 0 ? '0': '1');
    putchar(' ');
  }
}
0