답안 #1025440

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1025440 2024-07-17T03:34:28 Z huutuan 커다란 상품 (IOI17_prize) C++14
20 / 100
19 ms 18196 KB
#include "prize.h"

#include <bits/stdc++.h>

using namespace std;

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

using namespace __gnu_pbds;

template<class T>
using ordered_set=tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

vector<int> mem[200000];

vector<int> Ask(int i){
   if (mem[i].size()) return mem[i];
   return mem[i]=ask(i);
}

int find_best(int n) {
   for (int i=0; i<n; ++i) mem[i].clear();
   // if (n<=5000){
   //    for (int i=0; i<n; ++i){
   //       auto tmp=ask(i);
   //       if (tmp[0]+tmp[1]==0) return i;
   //    }
   //    return -1;
   // }
   int m=n;
   int mx=0;
   while (m>1){
      m=(int)sqrt(m);
      mx+=m;
   }
   vector<pair<int, int>> v(mx);
   for (int i=0; i<mx; ++i){
      auto tmp=Ask(i);
      v[i]={tmp[0], tmp[1]};
      if (tmp[0]+tmp[1]==0) return i;
   }
   int cnt=0;
   for (auto &i:v) cnt=max(cnt, i.first+i.second);
   ordered_set<int> id;
   vector<int> st;
   for (int i=0; i<mx; ++i) if (v[i].first+v[i].second!=cnt) id.insert(i);
   for (int i=mx; i<n; ++i) st.push_back(i);
   auto solve=[&](auto &&self, vector<int> pos, int cc){
      if (!cc) return;
      int mid=((int)pos.size()-1)/2;
      vector<int> posl, posr;
      for (int j:pos){
         if (j<pos[mid]) posl.push_back(j);
         if (j>pos[mid]) posr.push_back(j);
      }
      auto tmp=ask(pos[mid]);
      if (tmp[0]+tmp[1]!=cnt){
         id.insert(pos[mid]);
         int l=mid, r=mid;
         while (l){
            --l;
            auto tmp2=ask(l);
            if (tmp2[0]+tmp2[1]!=cnt) id.insert(pos[l]), posl.pop_back();
            else{
               int cl=tmp2[0]-id.order_of_key(pos[l]);
               int cr=tmp2[1]-((int)id.size()-id.order_of_key(pos[l]));
               self(self, posl, cl);
               self(self, posr, cr);
               return;
            }
         }
         while (r+1<(int)pos.size()){
            ++r;
            reverse(posr.begin(), posr.end());
            auto tmp2=ask(pos[r]);
            if (tmp2[0]+tmp2[1]!=cnt) id.insert(pos[r]), posr.pop_back();
            else{
               reverse(posr.begin(), posr.end());
               int cl=tmp2[0]-id.order_of_key(pos[r]);
               int cr=tmp2[1]-((int)id.size()-id.order_of_key(pos[r]));
               self(self, posl, cl);
               self(self, posr, cr);
               return;
            }
         }
      }else{
         int cl=tmp[0]-id.order_of_key(pos[mid]);
         int cr=tmp[1]-((int)id.size()-id.order_of_key(pos[mid]));
         self(self, posl, cl);
         self(self, posr, cr);
      }
   };
   solve(solve, st, cnt-(int)id.size());
   for (int i:id){
      auto tmp=Ask(i);
      if (tmp[0]+tmp[1]==0) return i;
   }
   return -1;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 8 ms 8908 KB Output is correct
2 Correct 5 ms 9164 KB Output is correct
3 Correct 6 ms 9164 KB Output is correct
4 Correct 6 ms 9164 KB Output is correct
5 Correct 6 ms 9164 KB Output is correct
6 Correct 1 ms 4952 KB Output is correct
7 Correct 10 ms 9164 KB Output is correct
8 Correct 7 ms 9096 KB Output is correct
9 Correct 6 ms 8908 KB Output is correct
10 Correct 6 ms 9164 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 7 ms 9112 KB Output is correct
2 Correct 6 ms 9160 KB Output is correct
3 Correct 6 ms 9164 KB Output is correct
4 Correct 7 ms 8908 KB Output is correct
5 Correct 6 ms 9164 KB Output is correct
6 Correct 1 ms 4952 KB Output is correct
7 Correct 6 ms 8908 KB Output is correct
8 Correct 6 ms 9164 KB Output is correct
9 Correct 7 ms 9108 KB Output is correct
10 Correct 7 ms 9104 KB Output is correct
11 Runtime error 19 ms 18196 KB Execution killed with signal 11
12 Halted 0 ms 0 KB -