結果

問題 No.1673 Lamps on a line
ユーザー 沙耶花沙耶花
提出日時 2021-09-10 21:24:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 4,550 ms
コンパイル使用メモリ 267,656 KB
実行使用メモリ 17,584 KB
最終ジャッジ日時 2024-06-11 22:21:16
合計ジャッジ時間 5,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 16 ms
6,816 KB
testcase_03 AC 15 ms
6,940 KB
testcase_04 AC 27 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 24 ms
6,940 KB
testcase_07 AC 50 ms
16,624 KB
testcase_08 AC 10 ms
15,852 KB
testcase_09 AC 55 ms
6,940 KB
testcase_10 AC 65 ms
10,408 KB
testcase_11 AC 12 ms
10,560 KB
testcase_12 AC 63 ms
17,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001

using P = pair<int,int> ;

P op(P a,P b){
	a.first += b.first;
	a.second += b.second;
	return a;
}

P e(){
	return make_pair(0,0);
}

P mapping(int a,P b){
	rep(i,(a&1))swap(b.first,b.second);
	return b;
}

int composition(int a,int b){
	return ((a+b)&1);
}

int id(){
	return 0;
}

int main(){
	
	int N,Q;
	cin>>N>>Q;
	vector<P> t(N,make_pair(1,0));
	lazy_segtree<P,op,e,int,mapping,composition,id> seg(t);
	
	
	rep(i,Q){
		int l,r;
		scanf("%d %d",&l,&r);
		l--;
		seg.apply(l,r,1);
		printf("%d\n",seg.all_prod().second);
	}
	
	return 0;
}
0