QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#698601#1914. Falling Portalscatch-up-from-behind7.142857 3ms10124kbC++173.3kb2024-11-01 20:43:512024-11-01 20:43:51

Judging History

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

  • [2024-11-01 20:43:51]
  • 评测
  • 测评结果:7.142857
  • 用时:3ms
  • 内存:10124kb
  • [2024-11-01 20:43:51]
  • 提交

answer

#include <bits/stdc++.h>
#define F(i,x,y) for(int i=(x);i<=(y);i++)
#define DF(i,x,y) for(int i=(x);i>=(y);i--)
#define ms(x,y) memset(x,y,sizeof(x))
#define SZ(x) (int)x.size()-1
#define all(x) x.begin(),x.end()
#define pb push_back
using namespace std;
typedef long long LL;
typedef unsigned long long ull;
typedef pair<int,int> pii;
template<typename T> void chkmax(T &x,T y){ x=max(x,y);}
template<typename T> void chkmin(T &x,T y){ x=min(x,y);}
template<typename T> void read(T &FF){
    FF=0;int RR=1;char ch=getchar();
    for(;!isdigit(ch);ch=getchar()) if(ch=='-') RR=-1;
    for(;isdigit(ch);ch=getchar()) FF=(FF<<1)+(FF<<3)+ch-48;
    FF*=RR;
}
const int N=200010;
int n,a[N],q[N];
void print(int X,int Y){
    int t=gcd(X,Y);X/=t,Y/=t;
    printf("%d/%d\n",X,Y);
}
#define fi first
#define se second
void Min(pii &pt1,pii pt2){ if(pt1.fi==-1||1ll*pt1.fi*pt2.se>1ll*pt2.fi*pt1.se) pt1=pt2;}
void Max(pii &pt1,pii pt2){ if(pt1.fi==-1||1ll*pt1.fi*pt2.se<1ll*pt2.fi*pt1.se) pt1=pt2;}
struct fenwick1{
    #define lowbit(x) x&-x
    pii tr[N];
    void clr(){ F(i,1,n) tr[i]={-1,-1};}
    void ins(int x,pii pt){ for(;x<=n;x+=lowbit(x)) Min(tr[x],pt);}
    pii ask(int x){ pii ret={-1,-1};for(;x;x-=lowbit(x)) Min(ret,tr[x]);return ret;}
}fwk1;
struct fenwick2{
    #define lowbit(x) x&-x
    pii tr[N];
    void clr(){ F(i,1,n) tr[i]={-1,-1};}
    void ins(int x,pii pt){ for(;x<=n;x+=lowbit(x)) Max(tr[x],pt);}
    pii ask(int x){ pii ret={-1,-1};for(;x;x-=lowbit(x)) Max(ret,tr[x]);return ret;}
}fwk2;
int id[N];
pii ans[N];
int main(){
    read(n);
    F(i,1,n) read(a[i]);
    F(i,1,n) read(q[i]);
    F(i,1,n) id[i]=i;
    sort(id+1,id+n+1,[&](int x,int y){ return a[x]>a[y];});
    fwk1.clr();
    F(i,1,n){
        int ID=id[i];
        fwk1.ins(n-ID+1,{a[ID],ID});
        if(a[q[ID]]<a[ID]){
            if(ID<q[ID]){
                pii pt=fwk1.ask(n-q[ID]+1);
                if(pt.fi==-1) ans[ID]={-1,-1};
                else ans[ID]={pt.fi-a[q[ID]],pt.se-q[ID]};
            }
            else{
                pii pt=fwk1.ask(n-ID+1);
                ans[ID]={pt.fi-a[q[ID]],pt.se-q[ID]};
            }
        }
    }
    F(i,1,n){
        if(i<q[i]){
            int X=-1,Y=-1;
            if(a[q[i]]>a[i]){
                X=a[q[i]]-a[i],Y=q[i]-i;
                F(j,1,i-1) if(a[j]<a[i])
                    if(X==-1||1ll*X*(q[i]-j)>1ll*(a[q[i]]-a[j])*Y) X=a[q[i]]-a[j],Y=q[i]-j;
                ans[i]={X,Y};
            }
            // else{
            //     F(j,q[i]+1,n) if(a[j]>a[i])
            //         if(X==-1||1ll*X*(j-q[i])>1ll*(a[j]-a[q[i]])*Y) X=a[j]-a[q[i]],Y=j-q[i];
            // }
        }
        else{
            if(a[i]>a[q[i]]){
                // X=a[i]-a[q[i]],Y=i-q[i];
                // F(j,i+1,n) if(a[j]>a[i])
                //     if(X==-1||1ll*X*(j-q[i])>1ll*(a[j]-a[q[i]])*Y) X=a[j]-a[q[i]],Y=j-q[i];
            }
            else{
                int X=-1,Y=-1;
                F(j,1,q[i]-1) if(a[j]<a[i])
                    if(X==-1||1ll*X*(q[i]-j)>1ll*(a[q[i]]-a[j])*Y) X=a[q[i]]-a[j],Y=q[i]-j;
                ans[i]={X,Y};
            }
        }
    }
    F(i,1,n){
        if(ans[i].fi==-1) puts("-1");
        else print(ans[i].fi,ans[i].se);
    }
    return 0;
}

详细


Pretests


Final Tests

Test #1:

score: 7.14286
Accepted
time: 1ms
memory: 10000kb

input:

4
3 5 10 2
3 3 2 1

output:

7/2
7/2
5/1
-1

result:

ok 4 lines

Test #2:

score: 0
Time Limit Exceeded

input:

100000
472909419 819415545 354941190 517113826 307239833 831177800 578834772 704837117 326642977 846249751 997452224 322958397 143787473 278464288 864820832 175161120 545824609 549197171 224617065 387719870 938593011 671365566 982006335 210657906 552581470 851423470 973444746 978545568 66820178 6528...

output:


result:


Test #3:

score: 0
Time Limit Exceeded

input:

100000
315623747 979206700 183094144 181505867 2572616 772718102 942741911 19472958 458398376 484546774 348949045 306690702 414701395 131437507 43708479 224826052 238532133 327518511 70279102 323433367 124141008 73101443 605805888 102782315 282343812 345273900 201043659 430908518 243739589 724275027...

output:


result:


Test #4:

score: 0
Time Limit Exceeded

input:

100000
1 4273 15397 29998 27927 48335 59992 44642 37593 89985 41136 43307 119975 48665 62351 149962 8744 116987 179946 98859 144057 209927 19516 41099 239906 183405 142896 269883 7437 83101 299858 174434 127933 329832 91448 39029 359803 174356 124036 389771 136441 166104 419738 196420 51865 449702 2...

output:


result:


Test #5:

score: 0
Time Limit Exceeded

input:

100000
1 933326351 11431 29998 989129972 37227 59992 989874362 62527 89984 979798680 75881 119974 982112916 19608 149961 995611915 151806 179946 913593466 132088 209929 930585647 149041 239909 930246483 218498 269887 972955258 54548 299863 927767028 295901 329836 953302565 223592 359806 995522236 31...

output:


result:


Test #6:

score: 0
Time Limit Exceeded

input:

100000
1 944663363 19033 29999 978821096 9085 59995 944910920 6257 89989 935899956 82545 119982 940520499 117973 149972 912135517 105359 179960 992861910 149037 209947 995445085 200979 239932 965159106 3211 269915 909296230 233961 299895 975484316 298245 329873 977094068 214362 359849 995636217 2225...

output:

2982983/44613
105551441/9703
162411978/68491
7391521/7630
215026164/2431
264626224/32479
13153700/88479
396899586/14735
4457716/1137
164044531/68157
245665273/13453
37301557/7074
62467229/83037
736027274/68047
1494072/151
202494709/30804
161350385/17531
201641486/59151
8441109/1285
828813402/31795
3...

result:


Test #7:

score: 0
Wrong Answer
time: 1ms
memory: 10124kb

input:

100
534473706 617535198 746655229 582822181 350704338 460330801 735571468 88013273 362424504 855094440 710187915 697682713 997401051 460972806 717634399 444280514 755460273 944591484 265200138 839544060 662809699 661469793 497227720 278087261 937000185 722532327 468846527 92827045 15385128 139854649...

output:

460073995/39
499461693/79
70579417/54
253499725/86
354956825/18
476669384/19
353515088/23
722738799/65
142459051/37
101926695/19
284359786/29
101852132/77
47435537/1
-1
630417805/24
159135663/29
750699957/37
353261461/15
497874367/28
90739905/41
173559563/28
295815304/71
282619268/5
379371014/71
347...

result:

wrong answer 12th lines differ - expected: '46481471/55', found: '101852132/77'

Test #8:

score: 0
Wrong Answer
time: 1ms
memory: 8020kb

input:

100
832359132 241086117 70268513 75641100 493265869 8969911 580115154 253097306 322151607 572536179 103433364 769475382 58915476 7943159 674934181 286336577 158800591 167266000 146088101 655190514 41590604 326590745 562776717 281254161 127537826 133491925 80685740 116325615 999795567 247078385 96567...

output:

-1
252179752/3
37201903/6
851541346/89
440217868/37
312966442/25
55265386/27
209881306/83
6020471/3
479706304/65
172671349/33
55614671/4
274426577/13
811758438/43
501895629/13
3353383/1
671014573/36
444919577/16
444919577/16
3449937/1
-1
112990271/25
15854062/1
442582477/42
772096419/52
-1
209881306...

result:

wrong answer 5th lines differ - expected: '534493001/48', found: '440217868/37'

Test #9:

score: 0
Wrong Answer
time: 3ms
memory: 9948kb

input:

2000
21505957 142018840 50835846 230286771 619214141 711966088 451418032 83312406 997278214 235672441 776998092 992475976 912444334 252212792 547270894 875994775 420249958 660039013 284835603 996966995 545404037 762620339 218177198 216536966 712712166 284586306 598975962 889965588 251816698 28540064...

output:

621739397/749
68924125/851
286668687/404
71254561/58
106942807/248
439394663/1060
141060098/1665
63149446/1097
-1
88636189/944
137708607/1814
342292000/1507
697909937/847
234038969/1165
240824277/728
183641868/233
103779443/1689
71870617/141
380689957/1946
-1
53373135/232
25731829/37
641507572/521
4...

result:

wrong answer 17th lines differ - expected: '37492745/708', found: '103779443/1689'

Test #10:

score: 0
Wrong Answer
time: 0ms
memory: 5892kb

input:

2000
797776435 328363264 380792931 830287509 570335429 882870824 429432401 710728673 945865610 940849228 403089500 796543599 901854446 712568094 68385691 346788092 179631402 72575296 680321593 139773675 517849401 190654156 839257552 981435241 992409916 887842045 919377993 677204575 940817503 5589288...

output:

54571041/764
38621117/206
214354369/1137
397711786/101
85820547/65
95982178/1303
99003005/344
360180127/1036
361290967/619
14844185/572
128263937/513
542338024/1373
329391712/1187
175253001/1957
382634689/502
270411193/231
721196575/1036
789793591/1474
24604043/373
13238478/293
110142397/776
4866678...

result:

wrong answer 1st lines differ - expected: '103496945/1514', found: '54571041/764'

Test #11:

score: 0
Time Limit Exceeded

input:

100000
40496370 324535254 49378557 776806467 392153838 609799230 999070315 9268041 50237542 87633903 878656049 864388090 896320175 129811364 229732659 323726790 766611509 83562791 105404287 304944654 412773020 198917959 443657299 415124223 512809649 256079123 986186956 2116823 811457832 528369347 63...

output:


result:


Test #12:

score: 0
Time Limit Exceeded

input:

100000
747693760 346580867 964846225 969980340 332880584 194631534 209614296 522099709 464443293 921495511 83514635 841823909 900939960 262364081 256636328 411285480 427902137 406071146 24620069 112056879 943629859 862303870 308874724 251885142 471236107 744614688 681975403 212603157 214491071 32304...

output:


result:


Test #13:

score: 0
Time Limit Exceeded

input:

100000
97813451 955958588 478382047 254807140 430405236 587356632 581166185 416641725 298677059 255167178 707387178 995828332 1210912 419588635 497113506 472224137 683979366 992616764 280702107 282745359 832716627 830311108 1931725 972918653 684698510 654423087 966059769 427612303 261873029 35728741...

output:


result:


Test #14:

score: 0
Time Limit Exceeded

input:

100000
822999751 128955399 431407947 917749297 190297412 252492617 150325783 759881331 829939635 283074122 899601042 159665057 607610844 489768568 320041755 787661887 373639719 710748050 188262807 366602165 732969261 932719233 208477147 358075812 125541209 536067868 278333698 201086482 537247556 180...

output:


result: