結果

問題 No.1673 Lamps on a line
ユーザー matcharate12matcharate12
提出日時 2022-03-17 17:28:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 2,134 ms
コンパイル使用メモリ 163,424 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 02:31:36
合計ジャッジ時間 4,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 85 ms
6,944 KB
testcase_03 AC 85 ms
6,944 KB
testcase_04 AC 149 ms
6,948 KB
testcase_05 AC 9 ms
6,948 KB
testcase_06 AC 124 ms
6,948 KB
testcase_07 AC 117 ms
6,944 KB
testcase_08 AC 4 ms
6,948 KB
testcase_09 AC 169 ms
6,944 KB
testcase_10 AC 177 ms
6,948 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 202 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <string.h>
#define rep(i,n) for(int i = 0; i < n; i++)
#define srep(i,a,b) for(int i = a; i < b; i++)
#define all(A) (A).begin(),A.end()
#define MOD 1000000007
using namespace std;
using ll = long long;
using P = pair<int,int>;
using Graph = vector<vector<int>>;

int main(void){
	int n,q; cin >> n >> q;
	vector<int> L(n,0);
	int on = 0;
	rep(i,q){
		int l,r; cin >> l >> r;
		l--; r--;
		rep(i,r-l+1){
			if(L[i+l] == '1'){
				L[i+l] = '0';
				on--;
			} else {
				L[i+l] = '1';
				on++;
			}
		}
		cout << on << endl;
	}
}
0