Submission #599717

#TimeUsernameProblemLanguageResultExecution timeMemory
599717stevancvSecret (JOI14_secret)C++14
100 / 100
617 ms4472 KiB
#include <bits/stdc++.h> #include "secret.h" #define ll long long #define ld long double #define sp ' ' #define en '\n' #define smin(a, b) a = min(a, b) #define smax(a, b) a = max(a, b) using namespace std; const int N = 3e3 + 2; struct block { int m; vector<int> a, b; }; int a[N]; vector<block> all; void Init(int n, int A[]) { for (int i = 0; i < n; i++) a[i] = A[i]; function<void(int, int)> DQ = [&] (int l, int r) { if (l >= r) return; block tr; int mid = l + r >> 1; tr.m = mid; tr.a.push_back(a[mid]); for (int i = mid - 1; i >= l; i--) { tr.a.push_back(Secret(a[i], tr.a.back())); } tr.b.push_back(a[mid + 1]); for (int i = mid + 2; i <= r; i++) { tr.b.push_back(Secret(tr.b.back(), a[i])); }/* cout << mid << en; for (int u : tr.a) cout << u << sp; cout << en; for (int u : tr.b) cout << u << sp; cout << en;*/ all.push_back(tr); DQ(l, mid - 1); DQ(mid + 2, r); }; DQ(0, n - 1); } int Query(int l, int r) { if (l == r) return a[l]; for (auto xyz : all) { int m = xyz.m; vector<int> a = xyz.a; vector<int> b = xyz.b; if (l <= m + 1 && m <= r) { int x = -1; if (m - l >= 0) x = a[m - l]; int y = -1; if (r - m - 1 >= 0) y = b[r - m - 1]; if (x == -1 && y == -1) continue; if (x == -1) return y; if (y == -1) return x; return Secret(x, y); } } }

Compilation message (stderr)

secret.cpp: In lambda function:
secret.cpp:22:21: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
   22 |         int mid = l + r >> 1;
      |                   ~~^~~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:58:1: warning: control reaches end of non-void function [-Wreturn-type]
   58 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...