結果

問題 No.1673 Lamps on a line
ユーザー yicodeyicode
提出日時 2023-06-14 17:22:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 169,936 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-23 01:12:17
合計ジャッジ時間 4,794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 86 ms
5,376 KB
testcase_03 AC 86 ms
5,376 KB
testcase_04 AC 156 ms
5,376 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 127 ms
5,376 KB
testcase_07 AC 113 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 169 ms
5,376 KB
testcase_10 AC 173 ms
5,376 KB
testcase_11 AC 16 ms
5,376 KB
testcase_12 AC 202 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Graph = vector<vector<int>>;
int main() {
  int N,Q; cin >> N >> Q;
  vector<pair<int,int>> A(Q);
  vector<bool> X(N + 1,false);
  long long ans = 0;
  for(int i = 0; i < Q; i++) {
    int l,r; cin >> l >> r;
    for(int j = l; j <= r; j++) {
      if(X[j]) {
        X[j] = false;
        ans--;
      }else {
        X[j] = true;
        ans++;
      }
    }
    cout << ans << endl;
  }
}

0