답안 #540757

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
540757 2022-03-21T16:52:25 Z amin 비밀 (JOI14_secret) C++14
0 / 100
465 ms 4728 KB
#include "secret.h"
#include<bits/stdc++.h>
using namespace std;



long n;
long u;
long a[130000];
map<pair<long,long>,long>m;
void build(long v,long tl,long tr)
{
 if(tl==tr)
 {
     return ;
 }
    long tm=(tl+tr)/2;
    long ans=tl;
    for(long i=tl+1;i<=tm;i++)
    {
        ans=Secret(ans,a[i]);
        m[{tl,i}]=ans;
    }
    ans=a[tm+1];
     for(long i=tm+2;i<=tr;i++)
    {
        ans=Secret(ans,a[i]);

        m[{i,tr}]=ans;
    }
    build(v*2,tl,tm);
    build(v*2+1,tm+1,tr);

}
long get(long v,long tl,long tr,long l,long r)
{
    long tm=(tl+tr)/2;
    if(r<=tm)
    {
       return get(v*2,tl,tm,l,r);
    }
    if(l>tm)
    {
        return get(v*2+1,tm+1,tr,l,r);
    }
    long ans=Secret(m[{l,tm}],m[{tm+1,r}]);
    return ans;
}
void Init(int N, int A[]) {

  n=N;
  for(long i=0;i<N;i++)
  {
      a[i]=A[i+1];
      m[{a[i],a[i]}]=a[i];
  }
  build(1,0,n-1);
}

int Query(int L, int R) {
    if(L==R)
    {
        return a[L-1];
        
    }
    return get(1,0,n-1,L-1,R-1);
  return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 128 ms 2536 KB Wrong Answer: Query(222, 254) - expected : 34031541, actual : 303250690.
2 Incorrect 119 ms 2504 KB Wrong Answer: Query(60, 375) - expected : 669221184, actual : 139067465.
3 Incorrect 123 ms 2556 KB Wrong Answer: Query(211, 401) - expected : 674373968, actual : 68256068.
4 Incorrect 435 ms 4652 KB Wrong Answer: Query(90, 497) - expected : 397934825, actual : 536870912.
5 Incorrect 442 ms 4544 KB Wrong Answer: Query(587, 915) - expected : 752404486, actual : 536870912.
6 Incorrect 463 ms 4668 KB Wrong Answer: Query(738, 741) - expected : 983692994, actual : 942882835.
7 Incorrect 441 ms 4680 KB Wrong Answer: Query(84, 976) - expected : 742463504, actual : 0.
8 Incorrect 464 ms 4636 KB Wrong Answer: Query(58, 987) - expected : 20022464, actual : 536870912.
9 Incorrect 465 ms 4620 KB Wrong Answer: Query(33, 967) - expected : 676869696, actual : 0.
10 Incorrect 447 ms 4728 KB Wrong Answer: Query(116, 961) - expected : 68487362, actual : 0.