結果

問題 No.2308 [Cherry 5th Tune B] もしかして、真?
ユーザー kotatsugamekotatsugame
提出日時 2023-05-19 21:37:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 765 ms
コンパイル使用メモリ 81,192 KB
実行使用メモリ 35,584 KB
最終ジャッジ日時 2024-05-10 05:16:41
合計ジャッジ時間 8,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
19,840 KB
testcase_01 AC 168 ms
22,448 KB
testcase_02 AC 167 ms
24,892 KB
testcase_03 AC 168 ms
22,996 KB
testcase_04 AC 172 ms
23,680 KB
testcase_05 AC 195 ms
23,552 KB
testcase_06 AC 174 ms
25,616 KB
testcase_07 AC 170 ms
26,448 KB
testcase_08 AC 176 ms
25,728 KB
testcase_09 AC 181 ms
25,728 KB
testcase_10 AC 174 ms
22,912 KB
testcase_11 AC 170 ms
24,908 KB
testcase_12 AC 168 ms
24,908 KB
testcase_13 AC 182 ms
24,912 KB
testcase_14 AC 175 ms
24,912 KB
testcase_15 AC 172 ms
24,916 KB
testcase_16 AC 169 ms
24,916 KB
testcase_17 AC 177 ms
24,912 KB
testcase_18 AC 174 ms
25,036 KB
testcase_19 AC 170 ms
25,040 KB
testcase_20 AC 176 ms
24,912 KB
testcase_21 AC 175 ms
26,112 KB
testcase_22 AC 179 ms
25,984 KB
testcase_23 AC 181 ms
26,112 KB
testcase_24 AC 181 ms
25,984 KB
testcase_25 AC 181 ms
26,112 KB
testcase_26 AC 189 ms
26,112 KB
testcase_27 AC 184 ms
25,984 KB
testcase_28 AC 186 ms
25,984 KB
testcase_29 AC 184 ms
25,984 KB
testcase_30 AC 180 ms
26,112 KB
testcase_31 AC 147 ms
35,456 KB
testcase_32 AC 145 ms
35,584 KB
testcase_33 AC 150 ms
35,584 KB
testcase_34 AC 161 ms
30,720 KB
testcase_35 AC 159 ms
30,720 KB
testcase_36 AC 159 ms
30,720 KB
testcase_37 AC 32 ms
19,712 KB
testcase_38 AC 169 ms
25,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cassert>
#include<atcoder/segtree>
using namespace std;
//1-indexed
#include<vector>
template<typename T>
struct BIT{
	int n;
	vector<T>bit;
	BIT(int n_=0):n(n_),bit(n_+1){}
	T sum(int i)
	{
		T ans=0;
		for(;i>0;i-=i&-i)ans+=bit[i];
		return ans;
	}
	void add(int i,T a)
	{
		if(i==0)return;
		for(;i<=n;i+=i&-i)bit[i]+=a;
	}
	int lower_bound(T k)//k<=sum(ret)
	{
		if(k<=0)return 0;
		int ret=0,i=1;
		while((i<<1)<=n)i<<=1;
		for(;i;i>>=1)
			if(ret+i<=n&&bit[ret+i]<k)k-=bit[ret+=i];
		return ret+1;
	}
};
pair<int,int>op(pair<int,int>l,pair<int,int>r){return max(l,r);}
pair<int,int>e(){return make_pair(-1,-1);}
int N;
string X[2<<17];
string Y[2<<17];
atcoder::segtree<pair<int,int>,op,e>seg;
bool f(int l,int r)
{
	if(l==r)return X[l]=="True";
	int idx=seg.prod(l,r).second;
	bool L=f(l,idx),R=f(idx+1,r);
	//cout<<l<<" "<<r<<" sp at "<<idx<<" : "<<L<<" "<<R<<endl;
	if(Y[idx]=="and")return L&&R;
	else if(Y[idx]=="or")return L||R;
	else if(Y[idx]=="xor")return L!=R;
	else return !L||R;
}
int main()
{
	int T;cin>>T;
	for(;T--;)
	{
		cin>>N;
		for(int i=0;i<N;i++)cin>>X[i];
		for(int i=0;i<N-1;i++)cin>>Y[i];
		BIT<int>bit(N-1);
		for(int i=1;i<=N-1;i++)bit.add(i,1);
		vector<pair<int,int> >init(N-1,e());
		for(int i=0;i<N-1;i++)
		{
			int s;cin>>s;
			int idx=bit.lower_bound(s)-1;
			assert(init[idx]==e());
			init[idx]=make_pair(i,idx);
			bit.add(idx+1,-1);
		}
		seg=atcoder::segtree<pair<int,int>,op,e>(init);
		cout<<(f(0,N-1)?"True\n":"False\n");
	}
}
0