QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#462193#4564. Digital Circuitq258233q2 45ms27204kbC++142.9kb2024-07-03 15:29:282024-07-03 15:29:29

Judging History

你现在查看的是最新测评结果

  • [2024-07-03 15:29:29]
  • 评测
  • 测评结果:2
  • 用时:45ms
  • 内存:27204kb
  • [2024-07-03 15:29:28]
  • 提交

answer

#include "circuit.h"

#include <vector>
#include<bits/stdc++.h>

namespace Sol{

using namespace std;
using ll=long long;
using u64=unsigned long long;
//using lll=__int128_t;
using lf=long double;
using Pr=pair<int,int>;
#define F(i,l,r) for(ll i=l;i<=ll(r);++i)
#define G(i,r,l) for(ll i=r;i>=ll(l);--i)
#define ct const
#define il inline
#define pb push_back
#define fi first
#define se second
#define mkr make_pair
template<class T>
il void tomn(T&x,T ct&y){y<x?x=y,0:0;}
template<class T>
il void tomx(T&x,T ct&y){x<y?x=y,0:0;}
#define dbg(...) fprintf(stderr,__VA_ARGS__)
#define CUT dbg("===================\n")
ct lf EPS=1e-10L;
il int dcmp(lf x){return fabs(x)<=EPS?0:(x<0?-1:1);}
ct ll INF=4e18L;
//ct int INF=1.02e9;
//il void rd(int&x){scanf("%d",&x);}
//il void rd(ll&x){scanf("%lld",&x);}

ct ll P=1000002022;
void add2(ll&x,ll y){x+=y,x-=((-(x>=P))&P);}
void sub2(ll&x,ll y){x-=y,x+=((-(x<0))&P);}
ll add(ll x,ll y){return add2(x,y),x;}
ll sub(ll x,ll y){return sub2(x,y),x;}

ct int N=4.02e5;

struct D{ll s,x;};
D operator*(D x,D y){return D{x.s+y.s,x.x+y.x};}
class SGT{
	struct Node{ll s,x;int tg;}d[4*N];
#define L (p<<1)
#define R (L|1)
	void up(int p){
		d[p].s=d[L].s+d[R].s;
		d[p].x=d[L].x+d[R].x;
	}
	void upd(int p){d[p].x=sub(d[p].s,d[p].x),d[p].tg^=1;}
	void push(int p){
		if(d[p].tg)upd(L),upd(R),d[p].tg=0;
	}
	int l,r;
	void upd(int p,int s,int t){
		if(l<=s&&t<=r)return upd(p);
		int mid=(s+t)>>1;push(p);
		if(l<=mid)upd(L,s,mid);
		if(mid<r)upd(R,mid+1,t);
		up(p);
	}
	void build(int p,int s,int t,ll*a,int*b){
		d[p].tg=0;
		if(s==t){
//			dbg("%d:	%lld	%lld\n",s,a[s],b[s]*a[s]);
			return d[p]=Node{a[s],b[s]*a[s]},void();
		}
		int mid=(s+t)>>1;
		build(L,s,mid,a,b);
		build(R,mid+1,t,a,b);
//		d[p].s=d[L].s+d[R].s;
		up(p);
	}
public:
	int n;
	void build(int n_,ll*a,int*b){build(1,1,n=n_,a,b);}
	void upd(int l_,int r_){
		l=l_,r=r_,upd(1,1,n);
	}
	ll qry(){return d[1].x;}
#undef L
#undef R
}sgt;

int n,m,fa[N],a[N];
ll f[N],g[N];
vector<int>t[N];
void dfs(int u){
	int n=t[u].size();
	vector<ll>pre(n,1),suf(n,1);
	F(i,0,n-2)pre[i+1]=pre[i]*g[t[u][i]];
	G(i,n-1,1)suf[i-1]=suf[i]*g[t[u][i]];
	F(i,0,n-1)
		f[t[u][i]]=f[u]*pre[i]%P*suf[i]%P,dfs(t[u][i]);
}
void init(){
	F(i,1,n+m)f[i]=g[i]=1,t[fa[i]].pb(i);
	G(i,n,1)(g[i]*=t[i].size())%=P,(g[fa[i]]*=g[i])%=P;
	dfs(1);
	
//	dbg("fa:	");
//	F(i,1,n+m)dbg("%d ",fa[i]);
//	dbg("\n");
//	dbg("g:	");
//	F(i,1,n+m)dbg("%lld ",g[i]);
//	dbg("\n");
//	dbg("f:	");
//	F(i,1,n+m)dbg("%lld ",f[i]);
//	dbg("\n");
//	dbg("a:	");
//	F(i,1,m)dbg("%d ",a[i]);
//	dbg("\n");
	
	sgt.build(m,f+n,a);
}
ll qry(int l,int r){
	return sgt.upd(l-n,r-n),sgt.qry();
}

}//namespace Sol

void init(int N, int M, std::vector<int> P, std::vector<int> A) {
	using namespace Sol;
	n=N,m=M;
	F(i,1,n+m)fa[i]=P[i-1]+1;
	F(i,1,m)a[i]=A[i-1];
	init();
}

int count_ways(int L, int R) {
  return Sol::qry(L+1,R+1);
}

详细

Subtask #1:

score: 2
Accepted

Test #1:

score: 2
Accepted
time: 0ms
memory: 20964kb

input:

1 2
-1 0 0
0 0
1 1
2 2
1 2
2 2
1 2
-1 -1
-2 -2

output:

1
2
0
1
1

result:

ok 7 lines

Test #2:

score: 0
Accepted
time: 2ms
memory: 21868kb

input:

1 1
-1 0
0
1 1
1 1
1 1
1 1
-1 -1
-2 -2

output:

1
0
1
0

result:

ok 6 lines

Test #3:

score: 0
Accepted
time: 0ms
memory: 21688kb

input:

1 972
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

509
483
489
500
481

result:

ok 7 lines

Test #4:

score: 0
Accepted
time: 5ms
memory: 21284kb

input:

1 1000
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

4
40
428
262
237

result:

ok 7 lines

Test #5:

score: 0
Accepted
time: 5ms
memory: 19572kb

input:

1 1000
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

898
828
828
617
582

result:

ok 7 lines

Test #6:

score: 0
Accepted
time: 0ms
memory: 22700kb

input:

1 1000
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

535
494
500
498
509

result:

ok 7 lines

Test #7:

score: 0
Accepted
time: 2ms
memory: 21184kb

input:

1 1000
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

517
486
511
487
512

result:

ok 7 lines

Test #8:

score: 0
Accepted
time: 0ms
memory: 22164kb

input:

1 1000
-1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

501
500
499
500
501

result:

ok 7 lines

Subtask #2:

score: 0
Wrong Answer

Test #9:

score: 7
Accepted
time: 5ms
memory: 22452kb

input:

1 2
-1 0 0
0 0
1 1
2 2
1 2
2 2
1 2
-1 -1
-2 -2

output:

1
2
0
1
1

result:

ok 7 lines

Test #10:

score: -7
Wrong Answer
time: 0ms
memory: 21132kb

input:

255 256
-1 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50 51 ...

output:

-1782334720
1245783198
751364036

result:

wrong answer 3rd lines differ - expected: '52130940', found: '-1782334720'

Subtask #3:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

0%

Subtask #4:

score: 0
Wrong Answer

Test #43:

score: 0
Wrong Answer
time: 45ms
memory: 27204kb

input:

32767 32768
-1 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12 12 13 13 14 14 15 15 16 16 17 17 18 18 19 19 20 20 21 21 22 22 23 23 24 24 25 25 26 26 27 27 28 28 29 29 30 30 31 31 32 32 33 33 34 34 35 35 36 36 37 37 38 38 39 39 40 40 41 41 42 42 43 43 44 44 45 45 46 46 47 47 48 48 49 49 50 50...

output:

-747097920
-784497824
-747097920
-709698016
-672298112
-709698016
-747097920
-709698016
-747097920
-709698016
-672298112
-709698016
-747097920
-784497824
-821897728
-859297632
-821897728
-784497824
-747097920
-784497824
-821897728
-784497824
-747097920
-709698016
-672298112
-709698016
-747097920
-78...

result:

wrong answer 3rd lines differ - expected: '431985922', found: '-747097920'

Subtask #5:

score: 0
Skipped

Dependency #4:

0%

Subtask #6:

score: 0
Skipped

Dependency #2:

0%

Subtask #7:

score: 0
Skipped

Dependency #3:

0%

Subtask #8:

score: 0
Skipped

Dependency #1:

100%
Accepted

Dependency #2:

0%