#include <bits/stdc++.h>
using namespace std;
/*
#pragma GCC optimize("Ofast")
#pragma comment(linker, "/stack:200000000")
#pragma GCC target( "sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native" )
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("profile-values,profile-reorder-functions,tracer")
#pragma GCC optimize("vpt")
#pragma GCC optimize("rename-registers")
#pragma GCC optimize("move-loop-invariants")
#pragma GCC optimize("unswitch-loops")
#pragma GCC optimize("function-sections")
#pragma GCC optimize("data-sections")
#pragma GCC optimize("branch-target-load-optimize")
#pragma GCC optimize("branch-target-load-optimize2")
#pragma GCC optimize("btr-bb-exclusive")
#pragma GCC optimize("inline")
#pragma GCC optimize("-fgcse")
#pragma GCC optimize("-fgcse-lm")
#pragma GCC optimize("-fipa-sra")
#pragma GCC optimize("-ftree-pre")
#pragma GCC optimize("-ftree-vrp")
#pragma GCC optimize("-fpeephole2")
#pragma GCC optimize("-ffast-math")
#pragma GCC optimize("-fsched-spec")
#pragma GCC optimize("-falign-jumps")
#pragma GCC optimize("-falign-loops")
#pragma GCC optimize("-falign-labels")
#pragma GCC optimize("-fdevirtualize")
#pragma GCC optimize("-fcaller-saves")
#pragma GCC optimize("-fcrossjumping")
#pragma GCC optimize("-fthread-jumps")
#pragma GCC optimize("-freorder-blocks")
#pragma GCC optimize("-fschedule-insns")
#pragma GCC optimize("inline-functions")
#pragma GCC optimize("-ftree-tail-merge")
#pragma GCC optimize("-fschedule-insns2")
#pragma GCC optimize("-fstrict-aliasing")
#pragma GCC optimize("-falign-functions")
#pragma GCC optimize("-fcse-follow-jumps")
#pragma GCC optimize("-fsched-interblock")
#pragma GCC optimize("-fpartial-inlining")
#pragma GCC optimize("no-stack-protector")
#pragma GCC optimize("-freorder-functions")
#pragma GCC optimize("-findirect-inlining")
#pragma GCC optimize("-fhoist-adjacent-loads")
#pragma GCC optimize("-frerun-cse-after-loop")
#pragma GCC optimize("inline-small-functions")
#pragma GCC optimize("-finline-small-functions")
#pragma GCC optimize("-ftree-switch-conversion")
#pragma GCC optimize("-foptimize-sibling-calls")
#pragma GCC optimize("-fexpensive-optimizations")
#pragma GCC optimize("inline-functions-called-once")
#pragma GCC optimize("-fdelete-null-pointer-checks")
*/
#define ll long long
#define all(x) x.begin(),x.end()
#define sz(x) (int) x.size()
#define f first
#define s second
#define ld long double
#define yes cout << "YES" << endl
#define no cout << "NO" << endl
#define pb push_back
#define popcount __builtin_popcount
#define endl '\n'
const long double Eps = 1e-12;
const int max1 = 1e9*1.4;
const int min1 = -1e9 *1.4;
const ll mod1 = 1000000007;
const ll mod2 = 2000000011;
const ll mod3 = 3000000017;
const ll mod = 998244353;
const int N = 2e6 + 1000000;
const int B = 8e6 + 1000000;
const ll INF = 3e18 + 100;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
ll binpow(ll x,ll y,ll md) {
if(y == 0) return 1;
if(y == 1) return x;
if(y % 2 == 0) {
ll now = binpow(x,y/2,md);
return (1ll*now*now) % md;
}
else {
ll now = binpow(x,y/2,md);
return (1ll*((1ll*now*now) % md)*x) % md;
}
}
/*
for(int l = 0;l < logn - 1;l++) {
for(int i = 0;i + (2 << l) <= n;i++) {
sp[l + 1][i] = merge(sp[l][i],sp[l][i + (1 << l)]);
}
}
int rmq(int l,int r) {
int t = log2(r - l);
return merge(sp[t][l],sp[t][r - (1 << t)]);
}
*/
int n,q;
int a[N];
long long tree[B];
int tree2[B];
void update2(int ind,int tl,int tr,int v,int x) {
if(tl == tr) {
tree2[v] = max(tree2[v],x);
return;
}
int middle = ((tl + tr) >> 1);
if(middle >= ind) {
update2(ind,tl,middle,v << 1,x);
}
else {
update2(ind,middle + 1,tr,(v << 1) | 1,x);
}
tree2[v] = max(tree2[v << 1],tree2[(v << 1) | 1]);
}
void build(int tl,int tr,int v) {
if(tl == tr) {
tree2[v] = 0;
return;
}
int middle = ((tl + tr) >> 1);
build(tl,middle,v << 1);
build(middle + 1,tr,(v << 1) | 1);
tree2[v] = max(tree2[v << 1],tree2[(v << 1) | 1]);
}
int getind(int l,int r,int tl,int tr,int v) {
if(l > tr || tl > r) return 0;
if(l <= tl&&tr <= r) return tree2[v];
int middle = ((tl + tr) >> 1);
return max(getind(l,r,tl,middle,v << 1),getind(l,r,middle + 1,tr,(v << 1) | 1));
}
void update(int ind,long long x,int tl,int tr,int v) {
if(tl == tr) {
tree[v] = max(tree[v],x*1ll);
return;
}
int middle = ((tl + tr) >> 1);
if(middle >= ind) update(ind,x,tl,middle,v << 1);
else update(ind,x,middle + 1,tr,(v << 1) | 1);
tree[v] = max(tree[v << 1],tree[(v << 1) | 1]);
}
long long get(int l,int r,int tl,int tr,int v) {
if(l > tr || tl > r) return 0ll;
if(l <= tl&&tr <= r) return tree[v];
int middle = ((tl + tr) >> 1);
return max(get(l,r,tl,middle,v << 1),get(l,r,middle + 1,tr,(v << 1) | 1));
}
signed main() {
ios_base::sync_with_stdio(NULL);
cin.tie(0);
cout.tie(0);
cin >> n >> q;
for(int i = 1;i <= n;i++) cin >> a[i];
pair <int,pair <int,pair <long long,int> > > p[q + 1];
for(int i = 1;i <= q;i++) cin >> p[i].s.f >> p[i].f >> p[i].s.s.f;
for(int i = 1;i <= q;i++) p[i].s.s.s = i;
sort(p + 1,p + q + 1);
int it = 1;
int ans[q + 1] = {};
unordered_map <int,int> fnd;
int temp = 1;
set <int> s;
for(int i = 1;i <= n;i++) s.insert(a[i]);
vector <int> v;
for(auto x:s) {
v.pb(x);
}
for(auto x:v) {
fnd[x] = temp;
temp++;
}
stack <pair <int,int> > st;
st.push({max1,0});
for(int i = 1;i <= q;i++) {
int r = p[i].f;
while(it <= r) {
while(!st.empty()&&(st.top()).f <= a[it]) st.pop();
if((st.top()).s != 0) {
update((st.top()).s,1ll*a[(st.top()).s] + 1ll*a[it],1,n,1);
}
st.push({a[it],it});
it++;
}
int l = p[i].s.f;
long long s = p[i].s.s.f;
int ind = p[i].s.s.s;
ans[ind] = (s >= get(l,r,1,n,1));
}
for(int i = 1;i <= q;i++) cout << ans[i] << endl;
}
/*
Lxner & WENARO
Лед
-------------------------------------------------------------------
Вс-все твои слёзы просто превращаю в лёд (В лёд)
Я спрячу сердце, его никто не найдёт
Не-не-не-не-не вижу смысла кончить этот эпизод
Я-я-я вижу выход, но не могу найти вход (—Ход-ход-ход-ход-ход, вход)
Все твои слёзы просто превращаю в лёд
Я-я-я спрячу сердце, его никто не найдёт (Не найдёт)
Не вижу смысла кончить этот эпизод (Лё-ё-ёд)
Я вижу выход, но не могу найти вход (И-и)
Все твои слёзы просто превращаю в лё-лё-лёд
Я спрячу сердце, его никто не найдёт (Я-я)
Не вижу смысла кончить этот эпизод
Я вижу выход, но не могу найти вход
Мно-мно-много говоришь — пустые слова (—Ва-ва-ва)
Самый одинокий парень я — навсегда
Ка-ка-как бы ни хотел, но ты одна нужна
Боль и слёзы, да, бывает, иногда (Лёд, лёд)
Все твои слёзы просто превращаю в лё-лё-лёд
Я спрячу сердце, его никто не найдёт (А-а-а-а-а)
Бывает больно, но я знаю всё пройдёт (Всё пройдёт)
Я вижу выход, но не могу найти вход (А-а)
Все твои слёзы просто превращаю в лё-лё-лёд
Я спрячу сердце, его никто не найдёт (Лё-лё-лё-лё-лёд)
Бывает больно, но я знаю всё пройдёт (Всё пройдёт)
Я вижу выход, но не могу найти вход (—Ход-ход-ход-ход, вход)
И не растопишь, и не сможешь забыть (За-а-а-а—)
Где-то без меня нашла новую жизнь
Тебя так манит этот холодный мир
И-и-и-и-и ты как айсберг, ведь я снова разбит
It's so hard, это сложно
О-о-она застыла в ожидании солнца-а-а-а
Но я не думаю что сможет согреть
Её ледяную душу, остаётся лишь смотреть (А, а, а-а-а-а)
Все твои слёзы просто превращаю в лёд
Я-я-я спрячу сердце, его никто не найдёт (Не найдёт)
Не вижу смысла кончить этот эпизод (—З-з-з-од)
Я вижу выход, но не могу найти вход (И-и)
Все твои слёзы просто превращаю в лё-лё-лёд
Я-я спрячу сердце, его никто не найдёт
Не вижу смысла кончить этот эпизод
Я вижу выход, но не могу найти вход
Твои слёзы просто-просто пре— в лёд
Я-я-я-я прячу сердце, его-его не найдёт (Не найд—, не най—)
Не вижу смысла кончить-кончить эпизод (А-а-а-а, а-а-а-а)
Я вижу выход, но не—, но не— найти вход
(—Ход-ход-ход-ход-ход, вход) Все твои слёзы просто превращаю в лёд
Я-я-я-я спрячу сердце, его никто не найдёт (Не найдёт)
Не вижу смысла кончить этот эпизод (—З-з-з-од)
Я вижу выход, но не могу-гу най— вход
*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
2392 KB |
Output is correct |
3 |
Correct |
1 ms |
2396 KB |
Output is correct |
4 |
Correct |
1 ms |
2396 KB |
Output is correct |
5 |
Correct |
1 ms |
2396 KB |
Output is correct |
6 |
Correct |
1 ms |
2396 KB |
Output is correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Correct |
1 ms |
2392 KB |
Output is correct |
9 |
Correct |
1 ms |
2396 KB |
Output is correct |
10 |
Correct |
1 ms |
2396 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
2392 KB |
Output is correct |
3 |
Correct |
1 ms |
2396 KB |
Output is correct |
4 |
Correct |
1 ms |
2396 KB |
Output is correct |
5 |
Correct |
1 ms |
2396 KB |
Output is correct |
6 |
Correct |
1 ms |
2396 KB |
Output is correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Correct |
1 ms |
2392 KB |
Output is correct |
9 |
Correct |
1 ms |
2396 KB |
Output is correct |
10 |
Correct |
1 ms |
2396 KB |
Output is correct |
11 |
Correct |
3 ms |
2652 KB |
Output is correct |
12 |
Correct |
5 ms |
3108 KB |
Output is correct |
13 |
Correct |
6 ms |
3164 KB |
Output is correct |
14 |
Correct |
6 ms |
3164 KB |
Output is correct |
15 |
Correct |
8 ms |
3164 KB |
Output is correct |
16 |
Correct |
5 ms |
3164 KB |
Output is correct |
17 |
Correct |
4 ms |
2908 KB |
Output is correct |
18 |
Correct |
3 ms |
2652 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2852 ms |
153852 KB |
Output is correct |
2 |
Correct |
2874 ms |
170596 KB |
Output is correct |
3 |
Correct |
2884 ms |
170332 KB |
Output is correct |
4 |
Correct |
2935 ms |
170492 KB |
Output is correct |
5 |
Correct |
1599 ms |
153792 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
75 ms |
8276 KB |
Output is correct |
2 |
Correct |
76 ms |
8196 KB |
Output is correct |
3 |
Correct |
70 ms |
6156 KB |
Output is correct |
4 |
Correct |
64 ms |
6148 KB |
Output is correct |
5 |
Correct |
65 ms |
6112 KB |
Output is correct |
6 |
Correct |
59 ms |
6228 KB |
Output is correct |
7 |
Correct |
60 ms |
6224 KB |
Output is correct |
8 |
Correct |
57 ms |
6060 KB |
Output is correct |
9 |
Correct |
36 ms |
6232 KB |
Output is correct |
10 |
Correct |
63 ms |
6412 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
2392 KB |
Output is correct |
3 |
Correct |
1 ms |
2396 KB |
Output is correct |
4 |
Correct |
1 ms |
2396 KB |
Output is correct |
5 |
Correct |
1 ms |
2396 KB |
Output is correct |
6 |
Correct |
1 ms |
2396 KB |
Output is correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Correct |
1 ms |
2392 KB |
Output is correct |
9 |
Correct |
1 ms |
2396 KB |
Output is correct |
10 |
Correct |
1 ms |
2396 KB |
Output is correct |
11 |
Correct |
3 ms |
2652 KB |
Output is correct |
12 |
Correct |
5 ms |
3108 KB |
Output is correct |
13 |
Correct |
6 ms |
3164 KB |
Output is correct |
14 |
Correct |
6 ms |
3164 KB |
Output is correct |
15 |
Correct |
8 ms |
3164 KB |
Output is correct |
16 |
Correct |
5 ms |
3164 KB |
Output is correct |
17 |
Correct |
4 ms |
2908 KB |
Output is correct |
18 |
Correct |
3 ms |
2652 KB |
Output is correct |
19 |
Correct |
318 ms |
33236 KB |
Output is correct |
20 |
Correct |
274 ms |
33328 KB |
Output is correct |
21 |
Correct |
343 ms |
33264 KB |
Output is correct |
22 |
Correct |
266 ms |
33368 KB |
Output is correct |
23 |
Correct |
277 ms |
33500 KB |
Output is correct |
24 |
Correct |
205 ms |
29232 KB |
Output is correct |
25 |
Correct |
211 ms |
29092 KB |
Output is correct |
26 |
Correct |
207 ms |
29228 KB |
Output is correct |
27 |
Correct |
222 ms |
29232 KB |
Output is correct |
28 |
Correct |
212 ms |
29192 KB |
Output is correct |
29 |
Correct |
212 ms |
29088 KB |
Output is correct |
30 |
Correct |
214 ms |
29196 KB |
Output is correct |
31 |
Correct |
234 ms |
29180 KB |
Output is correct |
32 |
Correct |
214 ms |
29132 KB |
Output is correct |
33 |
Correct |
225 ms |
29204 KB |
Output is correct |
34 |
Correct |
201 ms |
29208 KB |
Output is correct |
35 |
Correct |
209 ms |
29196 KB |
Output is correct |
36 |
Correct |
216 ms |
29312 KB |
Output is correct |
37 |
Correct |
221 ms |
29272 KB |
Output is correct |
38 |
Correct |
222 ms |
29228 KB |
Output is correct |
39 |
Correct |
199 ms |
30400 KB |
Output is correct |
40 |
Correct |
132 ms |
21968 KB |
Output is correct |
41 |
Correct |
121 ms |
9792 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
2392 KB |
Output is correct |
3 |
Correct |
1 ms |
2396 KB |
Output is correct |
4 |
Correct |
1 ms |
2396 KB |
Output is correct |
5 |
Correct |
1 ms |
2396 KB |
Output is correct |
6 |
Correct |
1 ms |
2396 KB |
Output is correct |
7 |
Correct |
1 ms |
2396 KB |
Output is correct |
8 |
Correct |
1 ms |
2392 KB |
Output is correct |
9 |
Correct |
1 ms |
2396 KB |
Output is correct |
10 |
Correct |
1 ms |
2396 KB |
Output is correct |
11 |
Correct |
3 ms |
2652 KB |
Output is correct |
12 |
Correct |
5 ms |
3108 KB |
Output is correct |
13 |
Correct |
6 ms |
3164 KB |
Output is correct |
14 |
Correct |
6 ms |
3164 KB |
Output is correct |
15 |
Correct |
8 ms |
3164 KB |
Output is correct |
16 |
Correct |
5 ms |
3164 KB |
Output is correct |
17 |
Correct |
4 ms |
2908 KB |
Output is correct |
18 |
Correct |
3 ms |
2652 KB |
Output is correct |
19 |
Correct |
2852 ms |
153852 KB |
Output is correct |
20 |
Correct |
2874 ms |
170596 KB |
Output is correct |
21 |
Correct |
2884 ms |
170332 KB |
Output is correct |
22 |
Correct |
2935 ms |
170492 KB |
Output is correct |
23 |
Correct |
1599 ms |
153792 KB |
Output is correct |
24 |
Correct |
75 ms |
8276 KB |
Output is correct |
25 |
Correct |
76 ms |
8196 KB |
Output is correct |
26 |
Correct |
70 ms |
6156 KB |
Output is correct |
27 |
Correct |
64 ms |
6148 KB |
Output is correct |
28 |
Correct |
65 ms |
6112 KB |
Output is correct |
29 |
Correct |
59 ms |
6228 KB |
Output is correct |
30 |
Correct |
60 ms |
6224 KB |
Output is correct |
31 |
Correct |
57 ms |
6060 KB |
Output is correct |
32 |
Correct |
36 ms |
6232 KB |
Output is correct |
33 |
Correct |
63 ms |
6412 KB |
Output is correct |
34 |
Correct |
318 ms |
33236 KB |
Output is correct |
35 |
Correct |
274 ms |
33328 KB |
Output is correct |
36 |
Correct |
343 ms |
33264 KB |
Output is correct |
37 |
Correct |
266 ms |
33368 KB |
Output is correct |
38 |
Correct |
277 ms |
33500 KB |
Output is correct |
39 |
Correct |
205 ms |
29232 KB |
Output is correct |
40 |
Correct |
211 ms |
29092 KB |
Output is correct |
41 |
Correct |
207 ms |
29228 KB |
Output is correct |
42 |
Correct |
222 ms |
29232 KB |
Output is correct |
43 |
Correct |
212 ms |
29192 KB |
Output is correct |
44 |
Correct |
212 ms |
29088 KB |
Output is correct |
45 |
Correct |
214 ms |
29196 KB |
Output is correct |
46 |
Correct |
234 ms |
29180 KB |
Output is correct |
47 |
Correct |
214 ms |
29132 KB |
Output is correct |
48 |
Correct |
225 ms |
29204 KB |
Output is correct |
49 |
Correct |
201 ms |
29208 KB |
Output is correct |
50 |
Correct |
209 ms |
29196 KB |
Output is correct |
51 |
Correct |
216 ms |
29312 KB |
Output is correct |
52 |
Correct |
221 ms |
29272 KB |
Output is correct |
53 |
Correct |
222 ms |
29228 KB |
Output is correct |
54 |
Correct |
199 ms |
30400 KB |
Output is correct |
55 |
Correct |
132 ms |
21968 KB |
Output is correct |
56 |
Correct |
121 ms |
9792 KB |
Output is correct |
57 |
Correct |
2763 ms |
179204 KB |
Output is correct |
58 |
Execution timed out |
3033 ms |
179184 KB |
Time limit exceeded |
59 |
Halted |
0 ms |
0 KB |
- |