結果

問題 No.1167 Graduation Trip
ユーザー 沙耶花沙耶花
提出日時 2021-04-07 15:57:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,094 ms / 4,000 ms
コード長 1,565 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 270,884 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 16:08:48
合計ジャッジ時間 38,416 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,275 ms
6,812 KB
testcase_01 AC 938 ms
6,816 KB
testcase_02 AC 669 ms
6,944 KB
testcase_03 AC 1,270 ms
6,940 KB
testcase_04 AC 1,260 ms
6,944 KB
testcase_05 AC 982 ms
6,940 KB
testcase_06 AC 1,256 ms
6,940 KB
testcase_07 AC 897 ms
6,940 KB
testcase_08 AC 732 ms
6,940 KB
testcase_09 AC 1,100 ms
6,944 KB
testcase_10 AC 2,060 ms
6,944 KB
testcase_11 AC 2,019 ms
6,940 KB
testcase_12 AC 2,049 ms
6,944 KB
testcase_13 AC 2,053 ms
6,944 KB
testcase_14 AC 2,066 ms
6,940 KB
testcase_15 AC 1,632 ms
6,944 KB
testcase_16 AC 1,176 ms
6,944 KB
testcase_17 AC 2,094 ms
6,944 KB
testcase_18 AC 1,868 ms
6,944 KB
testcase_19 AC 2,035 ms
6,940 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 23 ms
6,940 KB
testcase_23 AC 28 ms
6,940 KB
testcase_24 AC 28 ms
6,940 KB
testcase_25 AC 24 ms
6,944 KB
testcase_26 AC 23 ms
6,940 KB
testcase_27 AC 27 ms
6,940 KB
testcase_28 AC 28 ms
6,940 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 AC 132 ms
6,940 KB
testcase_31 AC 223 ms
6,944 KB
testcase_32 AC 291 ms
6,944 KB
testcase_33 AC 12 ms
6,940 KB
testcase_34 AC 12 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 100000000000000000

void Func(vector<long long> &A){
	int last = 0;
	for(long long i=31;i>=0;i--){
		int ind = -1;
		for(int j=last;j<A.size();j++){
			if((A[j]>>i) & 1LL){
				ind = j;
				break;
				swap(A[j],A[last]);
				ind = last;
				last++;
				break;
			}
		}
		if(ind==-1)continue;
		for(int j=0;j<A.size();j++){
			if(j!=ind){
				if((A[j]>>i)&1LL){
					A[j] ^= A[ind];
				}
			}
		}
		swap(A[last],A[ind]);
		last++;
	}
	while(A.size()!=0&&A.back()==0)A.pop_back();
	return;
}

vector<long long> op(vector<long long> A,vector<long long> B){
	while(B.size()>0){
		A.push_back(B.back());
		B.pop_back();
	}
	Func(A);
	return A;
}

vector<long long> e(){
	return vector<long long>(0);
}

int beki(long long a,long long b,int M = modulo){
	int x = 1;
	while(b!=0){
		if(b&1){
			x=((long long)x*a)%M;
		}
		a=((long long)a*a)%M;
		b>>=1;
	}
	return x;
}

int main(){
	
	int N,Q;
	cin>>N>>Q;
	
	vector<vector<long long>> A(N);
	for(int i=0;i<N;i++){
		long long t;
		cin>>t;
		A[i] = {t};
	}
	
	segtree<vector<long long>,op,e> S(A);
	
	for(int i=0;i<Q;i++){
		int M;
		cin>>M;
		
		vector<int> B(M);
		for(int j=0;j<M;j++)cin>>B[j];
		int ans = 1;
		for(int j=0;j<=M;j++){
			int l,r;
			if(j!=0)l = B[j-1];
			else l=0;
			if(j!=M)r = B[j];
			else r=N;
			
			int t = S.prod(l,r).size();
			ans = mod(ans * beki(2,r-l-t));
		}
		cout<<ans<<endl;
	}
	
	
	return 0;
}
0