QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#612947#9434. Italian CuisinejackWA 18ms5740kbC++142.5kb2024-10-05 13:20:202024-10-05 13:20:57

Judging History

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

  • [2024-10-05 13:20:57]
  • 评测
  • 测评结果:WA
  • 用时:18ms
  • 内存:5740kb
  • [2024-10-05 13:20:20]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define PI acos(-1)
const int N=1e5+10;
typedef __int128_t ll;
int c[N];


inline void read(register ll &x){
    x=0;register int f=1;register char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')f=-1;c=getchar();}//判断负数
    while(c>='0'&&c<='9')x=(x<<3)+(x<<1)+(c^48),c=getchar();
    //其中(x<<3)+(x<<1)等价于x*10,(c^48)等价于c-'0'
    x*=f;
}

inline void write(register ll &x)
{ 
	register int len=0,k1=x;
	if(k1<0)k1=-k1,putchar('-');
	while(k1)c[len++]=k1%10+'0',k1/=10;
	while(len--)putchar(c[len]);
}

ll r;

struct point
{
	ll x,y;
}p[N];
 
point C;
 
point operator+(point a,point b)
{
	point s;
	s.x=a.x+b.x;
	s.y=a.y+b.y;
	return s;
}
	
point operator-(point a,point b)
{
	point s;
	s.x=a.x-b.x;
	s.y=a.y-b.y;
	return s;
}
 

 
ll dot(point a,point b)//向量点积 判断角度问题 
{
	return a.x*b.x+a.y*b.y;
}
 

ll operator*(point a,point b)
{
	return a.x*b.y-a.y*b.x;
}
 
ll cross(point a,point b,point c)
{
	return (b-a)*(c-a);
}
 
ll dis(point a,point b)
{
	return (a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y);
}
 
bool dis1(point a,point b,point c)
{
    ll d=cross(a,b,c);
   // cout<<dis(b,c)<<endl;
    ll f=d*d;
    ll g=r*r*dis(b,c);
    //cout<<f<<' '<<g<<endl;
    return f<g;
}
 
//直线ab与线段cd的关系
//cross(a,b,c)*cross(a,b,d)>0 无交点 
//cross(a,b,c)*cross(a,b,d)<=0 有交点 
 
//线段ab与线段cd 
//cross(a,b,c)*cross(a,b,d)>0或cross(c,d,a)*cross(c,d,b)>0 无交点 
 
 
void solve(){
    int n;
    cin>>n;
	read(C.x);
	read(C.y);
	read(r);
    for(int i=1;i<=n;i++) 
	{
		read(p[i].x);
		read(p[i].y);
	}

    ll ans=0;
    ll fans=0;
    for(int i=1,j=i+1;i<=n;i++)
    {
        while(1)
        {
            int f=j%n+1;
            //cout<<i<<' '<<j<<' '<<f<<' '<<cross(p[i],p[f],C)<<' '<<cross(p[i],p[j],p[f])<<endl;
            if(cross(p[i],p[f],C)<=0) break;
           // cout<<dis1(C,p[i],p[f])<<endl;
            if(dis1(C,p[i],p[f])) break;
            ans+=(ll)(cross(p[i],p[j],p[f]));
            //cout<<i<<' '<<j<<' '<<f<<endl;
            j=f;
        }
        //cout<<ans<<endl;
        //cout<<i<<' '<<j<<endl;
        fans=max(fans,ans);
        int d=i%n+1;
        //if(j<=i) j=d;
        ans-=cross(p[i],p[d],p[j]);
    }
	write(fans);
	if(fans==0)
	{
		cout<<0;
	}
	cout<<'\n';
}
 
int main()
{
    int t;
    cin>>t;
    while(t--) solve();
    return 0;
} 

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 5740kb

input:

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

output:

5
24
0

result:

ok 3 number(s): "5 24 0"

Test #2:

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

input:

1
6
0 0 499999993
197878055 -535013568
696616963 -535013568
696616963 40162440
696616963 499999993
-499999993 499999993
-499999993 -535013568

output:

0

result:

ok 1 number(s): "0"

Test #3:

score: 0
Accepted
time: 18ms
memory: 3696kb

input:

6666
19
-142 -128 26
-172 -74
-188 -86
-199 -157
-200 -172
-199 -186
-195 -200
-175 -197
-161 -188
-144 -177
-127 -162
-107 -144
-90 -126
-87 -116
-86 -104
-89 -97
-108 -86
-125 -80
-142 -74
-162 -72
16
-161 -161 17
-165 -190
-157 -196
-154 -197
-144 -200
-132 -200
-128 -191
-120 -172
-123 -163
-138...

output:

5093
3086
2539
668
3535
7421
4883
5711
5624
1034
2479
3920
4372
2044
4996
5070
2251
4382
4175
1489
1154
3231
4038
1631
5086
14444
1692
6066
687
1512
4849
5456
2757
8341
8557
8235
1013
5203
10853
6042
6300
4480
2303
2728
1739
2187
3385
4266
6322
909
4334
1518
948
5036
1449
2376
3180
4810
1443
1786
47...

result:

ok 6666 numbers

Test #4:

score: -100
Wrong Answer
time: 15ms
memory: 3508kb

input:

6660
19
-689502500 -712344644 121094647
-534017213 -493851833
-578925616 -506634533
-663335128 -540066520
-748890119 -585225068
-847722967 -641694086
-916653030 -716279342
-956235261 -766049951
-1000000000 -836145979
-963288744 -923225928
-948140134 -944751289
-920681768 -972760883
-872492254 -10000...

output:

-1533639103
-756526207
1831867855
736339275
829890744
-1172743899
2082234413
1411712821
-557351255
1866913393
1585538725
-1306369864
-530521244
1868340871
1959565468
-242941614
930461644
1210330473
1077203311
1280397830
-1765993244
2081119891
-1280645989
758661452
2090624476
-1317517325
-149135548
-...

result:

wrong answer 1st numbers differ - expected: '117285633945667137', found: '-1533639103'