Submission #565980

# Submission time Handle Problem Language Result Execution time Memory
565980 2022-05-21T15:58:30 Z SSRS Secret (JOI14_secret) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
#include "secret.h"
using namespace std;
template <typename T>
struct disjoint_sparse_table{
  function<T(T, T)> f;
  int N;
  vector<T> A;
  vector<vector<T>> D;
  disjoint_sparse_table(vector<T> &A, function<T(T, T)> f): A(A), f(f){
    int N2 = A.size();
    N = 1;
    int LOG = 0;
    while (N < N2){
      N *= 2;
      LOG++;
    }
    A.resize(N);
    D = vector<vector<T>>(LOG, vector<T>(N));
    for (int i = 0; i < LOG; i++){
      for (int j = 0; j < N; j += 1 << (i + 1)){
        int d = 1 << i;
        D[i][j + d - 1] = A[j + d - 1];
        for (int k = j + d - 2; k >= j; k--){
          D[i][k] = f(A[k], D[i][k + 1]);
        }
        D[i][j + d] = A[j + d];
        for (int k = j + d + 1; k < j + d * 2; k++){
          D[i][k] = f(D[i][k - 1], A[k]);
        }
      }
    }
  }
  T query(int L, int R){
    if (R - L == 1){
      return A[L];
    } else {
      R--;
      int b = 31 - __builtin_clz(R ^ L);
      return f(D[b][L], D[b][R]);
    }
  }
};
int f(int a, int b){
  if (a == -1 || b == -1){
    return -1;
  }
  return Secret(a, b);
}
disjoint_sparse_table<int> DST;
void Init(int N, int A[]){
  vector<int> A2(N);
  for (int i = 0; i < N; i++){
    A2[i] = i;
  }
  DST = disjoint_sparse_table<int>(A2, f);
}
int Query(int L, int R){
  L--;
  return DST.query(L, R);
}

Compilation message

secret.cpp:50:28: error: no matching function for call to 'disjoint_sparse_table<int>::disjoint_sparse_table()'
   50 | disjoint_sparse_table<int> DST;
      |                            ^~~
secret.cpp:10:3: note: candidate: 'disjoint_sparse_table<T>::disjoint_sparse_table(std::vector<_Tp>&, std::function<T(T, T)>) [with T = int]'
   10 |   disjoint_sparse_table(vector<T> &A, function<T(T, T)> f): A(A), f(f){
      |   ^~~~~~~~~~~~~~~~~~~~~
secret.cpp:10:3: note:   candidate expects 2 arguments, 0 provided
secret.cpp:5:8: note: candidate: 'disjoint_sparse_table<int>::disjoint_sparse_table(const disjoint_sparse_table<int>&)'
    5 | struct disjoint_sparse_table{
      |        ^~~~~~~~~~~~~~~~~~~~~
secret.cpp:5:8: note:   candidate expects 1 argument, 0 provided
secret.cpp:5:8: note: candidate: 'disjoint_sparse_table<int>::disjoint_sparse_table(disjoint_sparse_table<int>&&)'
secret.cpp:5:8: note:   candidate expects 1 argument, 0 provided
secret.cpp: In instantiation of 'disjoint_sparse_table<T>::disjoint_sparse_table(std::vector<_Tp>&, std::function<T(T, T)>) [with T = int]':
secret.cpp:56:41:   required from here
secret.cpp:8:13: warning: 'disjoint_sparse_table<int>::A' will be initialized after [-Wreorder]
    8 |   vector<T> A;
      |             ^
secret.cpp:6:21: warning:   'std::function<int(int, int)> disjoint_sparse_table<int>::f' [-Wreorder]
    6 |   function<T(T, T)> f;
      |                     ^
secret.cpp:10:3: warning:   when initialized here [-Wreorder]
   10 |   disjoint_sparse_table(vector<T> &A, function<T(T, T)> f): A(A), f(f){
      |   ^~~~~~~~~~~~~~~~~~~~~