#include <bits/stdc++.h>
using namespace std;
#define int long long
#define vi vector<int>
#define pi pair<int, int>
#define vpi vector<pi>
#define vvi vector<vi>
#define mp make_pair
#define pb push_back
#define all(x) x.begin()+1, x.end()
const int INF = (int)1e17;
vi parent, siz;
int res = 0;
void make(int x)
{
parent[x] = x;
siz[x] = 1;
}
int f(int x)
{
return ((x)*(x+1))/2ll;
}
int find(int x)
{
if (parent[x] == x) return x;
return parent[x] = find(parent[x]);
}
void unite(int x, int y)
{
x = find(x); y = find(y);
if (x == y) return;
if (siz[x] < siz[y]) swap(x, y);
res -= f(siz[x]);
res -= f(siz[y]);
siz[x] += siz[y];
parent[y] = x;
res += f(siz[x]);
}
void solve()
{
int n, q; cin >> n >> q;
vi a(n+1);
for (int i = 1; i <= n; i++) cin >> a[i];
siz = vi(n+1);
parent = vi(n+1);
const int mx = (int)1e6 + 4529;
vvi idx(mx+100);
for (int i = 1; i <= n; i++) idx[a[i]].pb(i);
for (int i = 1; i <= n; i++) make(i);
vi ans(mx);
for (int el = 1; el <= mx-100; el++)
{
for (int i : idx[el])
{
// if this is newly explored add 1
if (siz[find(i)] == 1) res++;
// merge right
if (i < n && a[i+1] <= el)
{
// if it is unexplored add one
if (siz[find(i+1)] == 1) res++;
unite(i, i+1);
}
// merge left
if (i > 1 && a[i-1] <= el)
{
// if it is unexplored add one
if (siz[find(i-1)] == 1) res++;
unite(i, i-1);
}
}
ans[el] = res;
}
while (q--)
{
int x; cin >> x;
cout << ans[x] << '\n';
}
}
int32_t main()
{
auto begin = std::chrono::high_resolution_clock::now();
// FASTIO
ios_base::sync_with_stdio(0);
cin.tie(NULL); cout.tie(NULL);
int T = 1;
//cin >> T;
for (int i = 1; i <= T; i++)
{
//cout << "Case #" << i << ": ";
solve();
}
auto end = std::chrono::high_resolution_clock::now();
auto elapsed = std::chrono::duration_cast<std::chrono::nanoseconds>(end - begin);
cerr << "Time measured: " << elapsed.count() * 1e-9 << " seconds.\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
30 ms |
36184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
38 ms |
38224 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
43 ms |
38320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
17 ms |
31836 KB |
Output is correct |
2 |
Incorrect |
12 ms |
31836 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |