QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#492872#4912. WereYouLastCrazyFungi100 ✓4667ms4984kbC++14460b2024-07-26 16:41:112024-07-26 16:41:12

Judging History

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

  • [2024-07-26 16:41:12]
  • 评测
  • 测评结果:100
  • 用时:4667ms
  • 内存:4984kb
  • [2024-07-26 16:41:11]
  • 提交

answer

// 
bool query(int);
void modify(int,bool);

bool WereYouLast(int n,int m){
    if(m==10){
		int x=0;
		for(int i=0;i<10;i++) x|=query(i+1)<<i;
		if(x==n-1) return 1;
		++x;
		for(int i=0;i<10;i++)modify(i+1,x>>i&1);
		return 0;
	}
	int x=0;
	for(int i=0;i<5;i++) x|=query(i+1)<<i;
	if((1<<x)==n) return 1;
	bool f=query(x+6);
	modify(x+6,!f);
    if(f||(1<<x+1)==n) ++x;
    else x=0;
	for(int i=0;i<5;i++)modify(i+1,x>>i&1);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 10
Accepted

Test #1:

score: 10
Accepted
time: 1ms
memory: 3824kb

input:

1024 10

output:

12345876 10 10

result:

ok Correct Answer.
C1 = 10.
C2 = 10.

Subtask #2:

score: 20
Accepted

Test #2:

score: 20
Accepted
time: 3ms
memory: 4984kb

input:

65536 100000

output:

12345876 6 6

result:

ok Correct Answer.
C1 = 6.
C2 = 6.

Subtask #3:

score: 30
Accepted

Test #3:

score: 30
Accepted
time: 74ms
memory: 4976kb

input:

1048576 100000

output:

12345876 6 6

result:

ok Correct Answer.
C1 = 6.
C2 = 6.

Subtask #4:

score: 40
Accepted

Test #4:

score: 40
Accepted
time: 4667ms
memory: 4904kb

input:

67108864 100000

output:

12345876 6 6

result:

ok Correct Answer.
C1 = 6.
C2 = 6.