結果

問題 No.1167 Graduation Trip
ユーザー chocoruskchocorusk
提出日時 2020-08-12 01:48:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,316 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 145,284 KB
実行使用メモリ 12,836 KB
最終ジャッジ日時 2024-10-09 12:23:57
合計ジャッジ時間 40,231 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,369 ms
6,820 KB
testcase_01 AC 2,683 ms
5,888 KB
testcase_02 AC 2,078 ms
5,888 KB
testcase_03 AC 3,354 ms
5,888 KB
testcase_04 AC 3,334 ms
5,888 KB
testcase_05 AC 2,821 ms
6,016 KB
testcase_06 AC 3,349 ms
5,888 KB
testcase_07 AC 2,597 ms
5,888 KB
testcase_08 AC 2,209 ms
5,888 KB
testcase_09 AC 3,031 ms
6,016 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
using uint=unsigned int;
uint a[10010];
vector<int> Gauss_Jordan(vector<int> &v){ //v[i]<2^MAX
    int n=v.size();
    vector<uint> w(n);
    for(int i=0; i<n; i++) w[i]=a[v[i]];
    vector<bool> b(n);
    for(int i=0; i<32; i++){
        int p=-1;
        for(int j=0; j<n; j++){
            if(b[j]) continue;
            if((w[j]>>i)&1){
                b[j]=1;
                p=j;
                break;
            }
        }
        if(p==-1) continue;
        for(int j=p+1; j<n; j++){
            if((w[j]>>i)&1){
                w[j]^=w[p];
            }
        }
    }
    vector<int> ret;
    for(int j=0; j<n; j++){
        if(b[j]) ret.push_back(v[j]);
    }
    return ret;
}
template<typename Monoid>
struct SegmentTree{
	using F=function<Monoid(Monoid, Monoid)>;
	int sz;
	vector<Monoid> seg;
	const F f;
	const Monoid e;

	SegmentTree(int n, const F f, const Monoid &e): f(f), e(e){
		sz=1;
		while(sz<n) sz<<=1;
		seg.resize(2*sz, e);
	}

	SegmentTree(int n, const F f, const Monoid &e, vector<Monoid> v): f(f), e(e){
		sz=1;
		while(sz<n) sz<<=1;
		seg.resize(2*sz, e);
		for(int i=0; i<n; i++) seg[i+sz]=v[i];
		for(int i=sz-1; i>=1; i--){
			seg[i]=f(seg[2*i], seg[2*i+1]);
		}
	}

	void update(int k, const Monoid &x){
		k+=sz;
		seg[k]=x;
		while(k>1){
			k>>=1;
			seg[k]=f(seg[2*k], seg[2*k+1]);
		}
	}

	Monoid query(int a, int b){
		a+=sz, b+=sz;
		Monoid ret=e;
		for(;a<b; a>>=1, b>>=1){
			if(b&1) ret=f(ret, seg[--b]);
			if(a&1) ret=f(ret, seg[a++]);
		}
		return ret;
	}

	/*Monoid query(int a, int b){ //演算が非可換のとき
		a+=sz, b+=sz;
		Monoid retl=e, retr=e;
		for(;a<b; a>>=1, b>>=1){
			if(b&1) retr=f(seg[--b], retr);
			if(a&1) retl=f(retl, seg[a++]);
		}
		return f(retl, retr);
	}*/

	Monoid operator[](const int &k) const{
		return seg[k+sz];
	}
};
const ll MOD=1e9+7;
ll powmod(ll a, ll k){
    ll ap=a, ans=1;
    while(k){
        if(k&1){
            ans*=ap;
            ans%=MOD;
        }
        ap=ap*ap;
        ap%=MOD;
        k>>=1;
    }
    return ans;
}
ll inv(ll a){
    return powmod(a, MOD-2);
}
int main()
{
    int n, q;
    cin>>n>>q;
    for(int i=0; i<n; i++) cin>>a[i];
    auto f=[&](vector<int> v, vector<int> w){
        v.insert(v.end(), w.begin(), w.end());
        return Gauss_Jordan(v);
    };
    vector<vector<int>> va(n);
    for(int i=0; i<n; i++) if(a[i]>0) va[i].push_back(i);
    vector<int> e;
    SegmentTree<vector<int>> seg(n, f, e, va);
    while(q--){
        int m; cin>>m;
        int pr=0;
        int sum=0;
        for(int i=0; i<m; i++){
            int b; cin>>b;
            int r=seg.query(pr, b).size();
            sum+=b-pr-r;
            pr=b;
        }
        sum+=n-pr-(int)seg.query(pr, n).size();
        cout<<powmod(2, sum)<<endl;
    }
    return 0;
}
0