QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#421920#1835. Fancy Formulasliuzhenhao09#WA 30ms3840kbC++20881b2024-05-26 10:53:252024-05-26 10:53:25

Judging History

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

  • [2024-05-26 10:53:25]
  • 评测
  • 测评结果:WA
  • 用时:30ms
  • 内存:3840kb
  • [2024-05-26 10:53:25]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
using namespace std;
int T,p;
int qpow(int a,int b){
	int res = 1;
	for( ; b; b >>= 1){
		if(b & 1) res = (res * a) % p;
		a = (a * a) % p;
	}
	return res;
}
int a,b,c,d;
signed main(){
	scanf("%lld %lld",&p,&T);
	while(T--){
		scanf("%lld %lld %lld %lld",&a,&b,&c,&d);
		if((a + b) % p != (c + d) % p){
			printf("-1\n");
			continue;
		}
		int inv = qpow((a + b) % p,p - 2);
		(a *= inv) %= p,(b *= inv) %= p,(c *= inv) %= p,(d *= inv) %= p;
		//a -> c
		int L = a,R = a;
		for(int k = 0; ; k++){
			if(R - L + 1 >= p){
				printf("%lld\n",k);
				break;
			}
			if(L % p <= R % p && L % p <= c && c <= R % p){
				printf("%lld\n",k);
				break;
			}
			if(L % p > R % p && (c >= L % p || c <= R % p)){
				printf("%lld\n",k);
				break;
			}
			L = 2 * L - 1,R = 2 * R;
		}
	}
	return 0;
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

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

output:

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

result:

ok 10 numbers

Test #2:

score: -100
Wrong Answer
time: 30ms
memory: 3840kb

input:

97 100000
30 56 74 12
95 39 8 29
11 42 76 74
48 63 58 53
74 22 85 11
80 23 84 4
30 90 30 90
92 91 41 45
21 82 11 92
65 30 28 67
74 57 95 36
16 31 78 66
2 77 6 73
83 20 41 62
45 44 92 94
96 28 77 47
76 12 87 1
47 80 42 85
46 91 65 72
23 39 4 58
21 96 37 80
83 33 66 50
84 21 61 44
4 78 47 35
39 50 39 ...

output:

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

result:

wrong answer 316th numbers differ - expected: '6', found: '7'