QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#698561#9519. Build a ComputerPurslane#AC ✓0ms3740kbC++141.7kb2024-11-01 20:30:592024-11-01 20:31:01

Judging History

This is the latest submission verdict.

  • [2024-11-01 20:31:01]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3740kb
  • [2024-11-01 20:30:59]
  • Submitted

answer

#include<bits/stdc++.h>
#define pb push_back
#define ffor(i,a,b) for(int i=(a);i<=(b);i++)
#define roff(i,a,b) for(int i=(a);i>=(b);i--)
using namespace std;
const int MAXN=100+10;
int L,R,mzx,tot=2,s=1,t=2,flg,diff,len[MAXN];
vector<pair<int,int>> G[MAXN];
int hb(int s) {
	roff(i,20,0) if(s&(1<<i)) return i;
	return -1;	
}
void add_chain(int L) {
	mzx=1;
	roff(i,L,1) len[i]=++tot;
	len[0]=t;
	roff(i,L,1) G[len[i]].pb({len[i-1],0}),G[len[i]].pb({len[i-1],1});
	return ;
}
//pos1 是 1,pos2 是 0 
void output(void) {
	cout<<tot<<'\n';
	ffor(i,1,tot) {
		cout<<G[i].size()<<' ';
		for(auto pr:G[i]) cout<<pr.first<<' '<<pr.second<<' ';
		cout<<'\n';
	}
	return ;
}
int main() {
	ios::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	cin>>L>>R,diff=L^R;
	int hr=hb(R),d=hb(diff);
	int pos1=s,pos2=s;
	if(d==-1) {
		roff(i,hr,1) ++tot,G[pos1].pb({tot,!!(R&(1<<i))}),pos1=pos2=tot;
		G[pos1].pb({t,!!(R&1)});
		return output(),0;
	}
	roff(i,hr,d+1) ++tot,G[pos1].pb({tot,!!(R&(1<<i))}),pos1=pos2=tot;
	if(d!=hr) {
		if(d) {
			++tot,G[pos1].pb({tot,1}),pos1=tot;
			++tot,G[pos2].pb({tot,0}),pos2=tot;
		}
		else {
			G[pos1].pb({t,1}),G[pos2].pb({t,0});	
		}
	}
	else {
		++tot,G[pos1].pb({tot,1}),pos1=tot;
	}
	roff(i,d-1,1) {
		if(R&(1<<i)) {
			if(!mzx) add_chain(i);
			G[pos1].pb({len[i],0});
			++tot,G[pos1].pb({tot,1}),pos1=tot;
		}
		else ++tot,G[pos1].pb({tot,0}),pos1=tot;
		if(L&(1<<i)) ++tot,G[pos2].pb({tot,1}),pos2=tot;
		else {
			if(!mzx) add_chain(i);
			G[pos2].pb({len[i],1});
			if(pos2!=s) ++tot,G[pos2].pb({tot,0}),pos2=tot;
		}
	}
	if(d) {
		if(R&1) G[pos1].pb({t,1});
		G[pos1].pb({t,0});
		if(!(L&1)) G[pos2].pb({t,0});
		G[pos2].pb({t,1});
	}
	output();
	return 0;
}

这程序好像有点Bug,我给组数据试试?

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3660kb

input:

5 7

output:

5
1 3 1 
0 
2 4 1 5 0 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #2:

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

input:

10 27

output:

12
2 3 1 8 1 
0 
2 4 0 7 1 
2 5 0 5 1 
2 6 0 6 1 
2 2 0 2 1 
1 9 0 
2 5 1 10 0 
2 6 0 11 1 
1 12 1 
2 2 1 2 0 
2 2 0 2 1 

result:

ok ok

Test #3:

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

input:

5 13

output:

9
2 3 1 7 1 
0 
2 4 0 6 1 
2 5 0 5 1 
2 2 0 2 1 
1 8 0 
2 5 1 9 0 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #4:

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

input:

1 1000000

output:

39
20 3 1 4 1 5 1 6 1 7 1 8 1 9 1 10 1 11 1 12 1 13 1 14 1 15 1 16 1 17 1 18 1 19 1 20 1 21 1 2 1 
0 
2 4 0 22 1 
2 5 0 5 1 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2...

result:

ok ok

Test #5:

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

input:

1 1

output:

2
1 2 1 
0 

result:

ok ok

Test #6:

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

input:

7 9

output:

7
2 3 1 5 1 
0 
1 4 0 
1 6 0 
1 7 1 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #7:

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

input:

3 7

output:

6
2 3 1 6 1 
0 
2 4 0 5 1 
2 2 0 2 1 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #8:

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

input:

1 5

output:

5
3 3 1 5 1 2 1 
0 
1 4 0 
2 2 1 2 0 
2 2 0 2 1 

result:

ok ok

Test #9:

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

input:

1 4

output:

5
3 3 1 5 1 2 1 
0 
1 4 0 
1 2 0 
2 2 0 2 1 

result:

ok ok

Test #10:

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

input:

8 9

output:

5
1 3 1 
0 
1 4 0 
1 5 0 
2 2 1 2 0 

result:

ok ok

Test #11:

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

input:

7 51

output:

13
4 3 1 4 1 5 1 11 1 
0 
2 4 0 8 1 
2 5 0 5 1 
2 6 0 6 1 
2 7 0 7 1 
2 2 0 2 1 
1 9 0 
1 10 0 
2 7 0 12 1 
1 13 1 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #12:

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

input:

51 79

output:

16
2 3 1 5 1 
0 
1 4 0 
1 6 0 
1 7 1 
2 8 0 11 1 
2 8 1 12 0 
2 9 0 9 1 
2 10 0 10 1 
2 2 0 2 1 
2 9 0 13 1 
2 9 1 14 0 
2 10 0 15 1 
1 16 1 
2 2 1 2 0 
1 2 1 

result:

ok ok

Test #13:

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

input:

92 99

output:

14
1 3 1 
0 
2 4 1 5 0 
1 6 0 
1 7 1 
1 8 0 
1 9 1 
1 10 0 
1 11 1 
2 12 0 13 1 
2 12 1 14 0 
2 2 0 2 1 
2 2 1 2 0 
2 2 0 2 1 

result:

ok ok

Test #14:

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

input:

27 36

output:

13
2 3 1 5 1 
0 
1 4 0 
1 6 0 
1 7 1 
2 8 0 10 1 
2 8 1 11 0 
2 9 0 9 1 
2 2 0 2 1 
1 12 0 
1 13 1 
1 2 0 
1 2 1 

result:

ok ok

Test #15:

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

input:

55 84

output:

17
2 3 1 5 1 
0 
1 4 0 
2 6 0 10 1 
1 11 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 2 0 2 1 
1 12 0 
2 7 1 13 0 
2 8 0 14 1 
1 15 1 
1 16 0 
1 17 1 
1 2 0 
1 2 1 

result:

ok ok

Test #16:

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

input:

297208 929600

output:

57
2 3 1 23 1 
0 
2 4 0 22 1 
2 5 0 5 1 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 2 0 2 1 
2 5 0 24 1 
2 5 1 25 0 
1 26 0 
2 6 1 27 0 
1 28...

result:

ok ok

Test #17:

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

input:

45728 589156

output:

54
5 3 1 5 1 6 1 7 1 26 1 
0 
1 4 0 
1 23 0 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
1 24 0 
2 8 0 25 1 
2 9 0 27 1 ...

result:

ok ok

Test #18:

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

input:

129152 138000

output:

47
2 3 1 5 1 
0 
1 4 0 
1 6 0 
1 7 1 
1 8 0 
1 9 1 
1 10 0 
1 11 1 
2 12 0 24 1 
1 25 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 23 0 23 1 
2 2 0 2 1 
2 13 0 26 1 
1 27 1 
1 28 0 
2 14 1 29 0 
2 15 0 30 1 
2 ...

result:

ok ok

Test #19:

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

input:

245280 654141

output:

56
3 3 1 5 1 24 1 
0 
1 4 0 
1 23 0 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
2 7 0 25 1 
1 26 1 
2 8 0 27 1 
1 28 1 ...

result:

ok ok

Test #20:

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

input:

202985 296000

output:

52
2 3 1 5 1 
0 
1 4 0 
1 6 0 
1 7 1 
2 8 0 23 1 
2 8 1 24 0 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
1 25 0 
2 9 1 26 0 
1 27 0 
2 10 1 28 0 
1 29 0...

result:

ok ok

Test #21:

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

input:

438671 951305

output:

57
2 3 1 23 1 
0 
2 4 0 22 1 
2 5 0 5 1 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 2 0 2 1 
2 5 0 24 1 
1 25 1 
1 26 0 
2 6 1 27 0 
2 7 0 28...

result:

ok ok

Test #22:

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

input:

425249 739633

output:

56
2 3 1 5 1 
0 
1 4 0 
2 6 0 23 1 
1 24 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
2 7 0 25 1 
2 7 1 26 0 
1 27 0 
2 8 1 28 0 ...

result:

ok ok

Test #23:

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

input:

551207 961718

output:

56
1 3 1 
0 
2 4 1 5 0 
2 6 0 23 1 
2 6 1 24 0 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
1 25 0 
2 7 1 26 0 
2 8 0 27 1 
2 8 1 2...

result:

ok ok

Test #24:

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

input:

114691 598186

output:

55
4 3 1 5 1 6 1 25 1 
0 
1 4 0 
1 23 0 
2 6 0 6 1 
2 7 0 7 1 
2 8 0 8 1 
2 9 0 9 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 2 0 2 1 
2 7 0 24 1 
1 26 0 
1 27 1 
1 28 0 ...

result:

ok ok

Test #25:

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

input:

234654 253129

output:

46
1 3 1 
0 
1 4 1 
1 5 1 
2 6 1 7 0 
1 8 0 
2 9 1 22 0 
2 10 0 23 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 2 0 2 1 
1 24 1 
2 11 0 25 1 
2 11 1 26 0 
2 12 0 27 1 
1 28 1 
1 29 0 
...

result:

ok ok

Test #26:

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

input:

554090 608599

output:

52
1 3 1 
0 
1 4 0 
1 5 0 
2 6 1 7 0 
1 8 0 
2 9 1 24 0 
2 10 0 25 1 
2 10 0 10 1 
2 11 0 11 1 
2 12 0 12 1 
2 13 0 13 1 
2 14 0 14 1 
2 15 0 15 1 
2 16 0 16 1 
2 17 0 17 1 
2 18 0 18 1 
2 19 0 19 1 
2 20 0 20 1 
2 21 0 21 1 
2 22 0 22 1 
2 23 0 23 1 
2 2 0 2 1 
1 26 1 
1 27 0 
1 28 1 
1 29 0 
1 30 ...

result:

ok ok

Extra Test:

score: 0
Extra Test Passed