Submission #996413

#TimeUsernameProblemLanguageResultExecution timeMemory
996413cpptowinPilot (NOI19_pilot)C++17
23 / 100
40 ms17384 KiB
#include <bits/stdc++.h> #define fo(i, d, c) for (int i = d; i <= c; i++) #define fod(i, c, d) for (int i = c; i >= d; i--) #define maxn 1000010 #define N 1010 #define fi first #define se second #define pb emplace_back #define en cout << "\n"; #define int long long #define inf (int)1e18 #define pii pair<int, int> #define vii vector<pii> #define lb(x) x & -x #define bit(i, j) ((i >> j) & 1) #define offbit(i, j) (i ^ (1LL << j)) #define onbit(i, j) (i | (1LL << j)) #define vi vector<int> #define all(x) x.begin(),x.end() template <typename T1, typename T2> bool minimize(T1 &a, T2 b) { if (a > b) { a = b; return true; } return false; } template <typename T1, typename T2> bool maximize(T1 &a, T2 b) { if (a < b) { a = b; return true; } return false; } using namespace std; const int nsqrt = 450; const int mod = 1e9 + 7; int n,a[maxn],q; int l[maxn],r[maxn]; pii res[maxn]; void L(int a[], int n, int ans[]) { stack<int> st; fo(i, 1, n) { while (st.size() and a[st.top()] <= a[i]) st.pop(); ans[i] = (st.empty() ? 0 : st.top()); st.push(i); } } void R(int a[], int n, int ans[]) { stack<int> st; fod(i, n,1) { while (st.size() and a[st.top()] <= a[i]) st.pop(); ans[i] = (st.empty() ? n + 1 : st.top()); st.push(i); } } int p[maxn]; main() { #define name "TASK" if (fopen(name ".inp", "r")) { freopen(name ".inp", "r", stdin); freopen(name ".out", "w", stdout); } ios_base::sync_with_stdio(false); cin.tie(NULL); cin >> n >> q; fo(i,1,n) cin >> a[i]; L(a,n,l); R(a,n,r); fo(i,1,n) { res[i].fi = a[i]; res[i].se = (i - l[i]) * (r[i] - i); } sort(res + 1,res + n + 1); fo(i,1,n) p[i] = p[i - 1] + res[i].se; sort(a + 1,a + n + 1); while(q--) { int x; cin >> x; int lb = upper_bound(a + 1,a + n + 1,x) - a - 1; cout << p[lb];en; } }

Compilation message (stderr)

pilot.cpp:69:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   69 | main()
      | ^~~~
pilot.cpp: In function 'int main()':
pilot.cpp:74:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   74 |         freopen(name ".inp", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
pilot.cpp:75:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   75 |         freopen(name ".out", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...