QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#572181 | #9313. Make Max | Sakuyamaid | AC ✓ | 173ms | 106832kb | C++20 | 5.6kb | 2024-09-18 12:48:53 | 2024-09-18 12:48:53 |
Judging History
answer
// buxiangwanla
// 你紫名觉得是我的锅,那就是我的锅,为什么你知道吗?因为紫名说的话,就像是一个癌症晚期患者说的话一样。
// 他都已经这样了,你为什么不顺从他呢?你总要给人最后一段时间一个好的回忆吧,最后的时光里。
// 因为紫名这个段位很尴尬,紫名橙名再往上一点,grandmaster,可能说,欸,有点实力,能操作一下。
// 紫名往下,绿名,蓝名,啊,人家是纯属玩游戏的,因为太垃圾了,自己也知道自己没什么实力。
// 但紫名,上不去下不来的这个段位,他觉得,蓝名的人不配跟他一起玩儿,对吧?蓝名是最垃圾的。
// 但是呢他想上去,他又上不去,所以这个分段是最尴尬的,没办法,卡在这里了。
// 想操作,又操作不起来,掉下去吧,他又觉得不值得,对吧,我好不容易从蓝名打到紫名了,我为什么还要掉下去呢?
// 这个人说优越狗越说越起劲,为什么他会这么说?因为他是紫名。
// 他觉得你比我段位高,你说的任何话都是优越,我并不管你说的有没有道理。
// 我紫名,我最猛,我WF2017我上我能夺冠,那打比赛全是sb。你比我段位高你说话就是放屁,这就是这种人的想法。但是呢,他的想法是对的,为什么呢?
// 因为他癌症晚期。没办法,我同意,对不起,我优越了。可能是我膨胀了,不好意思啊,我膨胀了。我紫名是没操作,难道我就看不懂谁背锅吗?
// 不是,如果你看得懂的话,就不会在这里抬杠了,对吧。
// If you Blue Name think it's my fault, it's my fault. Do you know why? Because what Blue Name says is like something a terminal cancer patient would say.
// He's already like that. Why don't you just go along with it? You always have to give someone a good memory for the last period of time, right? In the last time.
// Because the blue name of this rating is very awkward, blue name purple name a little further up, master, may say, hey, a little strength, can operate a little.
// Blue name down, green name, ah, people are purely playing the game, because it is too trash, they also know that they do not have much strength.
// But the blue name, can't go up or down in this rating, he thinks, the green name of the person does not deserve to play with him, right? Green name is the most trash.
// But he wants to go up, he can not go up, so this rating is the most embarrassing, no way, stuck here.
// I want to solve, but I can not solve the problems, fall down, he also think it is not worth it, right, it is not easy for me to fight from the green name to the blue name, why do I have to fall down?
// This person said superior dog the more he said the more energized, why would he say so? Because he's blue.
// He thinks you are higher than me, anything you say is superior, I don't care if what you say makes sense or not.
// I'm not sure if there's any truth in what you're saying, but I'm not sure if there's any truth in what you're saying, and I'm not sure if there's any truth in what you're saying, and I'm not sure if there's any truth in what you're saying. But then, his idea is right, why?
// Because he has terminal cancer. No way, I agree. I'm sorry, I'm superior. Maybe I'm bloated. I'm sorry, I'm bloated. My blue name is no operation. Can't I see who's taking the fall?
// No, if you could see it, you wouldn't be here carrying the can, would you.
//
#include <bits/stdc++.h>
using namespace std;
typedef unsigned long long ULL;
using LL = long long;
mt19937_64 rd(time(0));
constexpr int N = 3e5 + 5, mod = 998244353;
constexpr double eps = 1e-8;
//#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4.1,sse4.2,avx,avx2,popcnt,tune=native")
#define fi first
#define se second
#define int long long
#define lowbit(x) (x & (-x))
#define PII pair<int, int>
#define mid ((l + r) >> 1)
int min(int a, int b) { return a < b ? a : b; }
int max(int a, int b) { return a > b ? a : b; }
int ksm(int a, int b){
a %= mod;
int res = 1;
while(b){
if(b & 1)res = res * a % mod;
a = a * a % mod;
b >>= 1;
}
return res;
}
int n, m, ans;
int a[N];
void Sakuya()
{
cin >> n;
ans = 0;
for(int i = 1; i <= n; ++ i)cin >> a[i];
vector<vector<PII>>st((n + 1), vector<PII>(21));
for(int i = 1; i <= n; ++ i)st[i][0] = {a[i], i};
for(int j = 1; j <= 20; ++ j){
for(int i = 1; i + (1LL << j) <= n + 1; ++ i){
st[i][j] = max(st[i][j - 1], st[i + (1LL << (j - 1))][j - 1]);
}
}
auto query = [&](int l, int r) -> PII{
int k = __lg(r - l + 1);
return max(st[l][k], st[r - (1LL << k) + 1][k]);
};
auto dfs = [&](auto self, int l, int r) -> void{
if(l > r)return;
auto [maxn, pos] = query(l, r);
int nowpos = pos;
vector<int>res;
res.emplace_back(r + 1);
while(l <= r){
auto [val, pos] = query(l, r);
if(val == maxn){
res.emplace_back(pos);
r = pos - 1;
}else break;
}
reverse(res.begin(), res.end());
int lst = l - 1;
for(auto rr : res){
ans += rr - lst - 1;
self(self, lst + 1, rr - 1);
lst = rr;
}
};
dfs(dfs, 1, n);
cout << ans << "\n";
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T;
for (cin >> T; T -- ; )
Sakuya();
}
这程序好像有点Bug,我给组数据试试?
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3972kb
input:
4 2 1 2 2 2 2 7 1 1 1 2 2 2 2 3 1 2 3
output:
1 0 3 3
result:
ok 4 number(s): "1 0 3 3"
Test #2:
score: 0
Accepted
time: 159ms
memory: 77552kb
input:
2 198018 875421126 585870339 471894633 383529988 625397685 944061047 704695631 105113224 459022561 760848605 980735314 847376362 980571959 329939331 644635272 326439858 752879510 837384394 175179068 182094523 397239381 1199016 185143405 279638454 252374970 822030887 860312140 137248166 993229443 164...
output:
4084978 4130372
result:
ok 2 number(s): "4084978 4130372"
Test #3:
score: 0
Accepted
time: 152ms
memory: 76928kb
input:
2 195768 3086 1582 7854 5577 5243 2734 8054 4805 5686 7065 5555 2410 6240 7589 2889 3745 8094 9147 9438 1252 5497 5786 6655 4437 3933 2579 5722 9512 3117 1742 5362 2068 1853 4069 9231 1126 3991 420 2571 5517 3063 7279 8085 6111 5503 5980 50 6003 244 9684 6343 6517 1598 5223 5520 982 3932 1093 1149 7...
output:
3061429 2997931
result:
ok 2 number(s): "3061429 2997931"
Test #4:
score: 0
Accepted
time: 151ms
memory: 92768kb
input:
2 200000 2 1 4 3 6 5 8 7 10 9 12 11 14 13 16 15 18 17 20 19 22 21 24 23 26 25 28 27 30 29 32 31 34 33 36 35 38 37 40 39 42 41 44 43 46 45 48 47 50 49 52 51 54 53 56 55 58 57 60 59 62 61 64 63 66 65 68 67 70 69 72 71 74 73 76 75 78 77 80 79 82 81 84 83 86 85 88 87 90 89 92 91 94 93 96 95 98 97 100 99...
output:
10000000000 9999900003
result:
ok 2 number(s): "10000000000 9999900003"
Test #5:
score: 0
Accepted
time: 165ms
memory: 106832kb
input:
2 200000 200000 1 199999 199998 199997 199996 199995 199994 199993 199992 199991 199990 199989 199988 199987 199986 199985 199984 199983 199982 199981 199980 199979 199978 199977 199976 199975 199974 199973 199972 199971 199970 199969 199968 199967 199966 199965 199964 199963 199962 199961 199960 19...
output:
19999700003 19999500006
result:
ok 2 number(s): "19999700003 19999500006"
Test #6:
score: 0
Accepted
time: 64ms
memory: 4136kb
input:
1000 27 373114173 854237870 229115295 303949167 146925508 596279432 662675971 828943670 913666267 642273210 864977718 57938747 337667826 311832042 518751132 911924071 931628414 438636899 404194523 247567493 293431672 743877009 323812958 366701767 976661982 731099528 757329365 267 63595569 149400190 ...
output:
115 2276 570 4717 2719 3150 117 2890 994 3136 3470 6985 4700 327 4127 3761 1493 5117 4734 7698 779 5644 0 5997 2019 823 499 371 6544 1371 7689 5392 850 8358 7737 3302 169 1332 5114 6550 3956 726 6724 3644 5352 431 5469 301 980 6599 3734 6368 7770 6624 1981 4028 4968 183 704 5360 538 1814 7453 6600 5...
result:
ok 1000 numbers
Test #7:
score: 0
Accepted
time: 52ms
memory: 4068kb
input:
1000 424 6 7 9 1 3 9 5 6 4 3 10 8 4 7 9 7 4 5 5 6 4 9 4 1 1 7 4 10 7 4 9 7 1 8 6 1 7 10 6 1 8 2 3 2 5 10 6 7 5 1 2 5 1 6 5 9 9 7 9 4 8 1 4 10 10 4 3 8 3 8 2 4 8 3 10 7 6 7 6 3 8 8 5 9 1 6 2 6 3 7 9 4 9 1 1 3 7 3 2 1 9 4 3 10 6 8 3 5 9 5 7 5 3 8 9 1 3 9 7 8 7 2 10 8 2 2 6 8 8 9 6 2 1 8 8 10 8 9 9 8 1...
output:
1120 617 1562 339 1650 1312 1773 958 100 843 1609 474 1260 1098 1041 1176 1589 932 501 1541 41 384 1859 613 1053 1418 1918 326 1632 1701 1787 1953 969 40 387 489 1442 177 250 149 867 823 890 1809 88 198 858 1926 1948 963 1635 1077 936 558 1722 460 444 188 670 909 1201 943 241 677 511 904 1670 39 245...
result:
ok 1000 numbers
Test #8:
score: 0
Accepted
time: 68ms
memory: 7624kb
input:
40 8008 48 20 89 29 69 45 98 32 81 95 14 76 71 95 78 2 10 70 3 29 17 98 70 46 56 85 26 1 28 29 40 85 11 73 94 56 58 58 29 13 49 39 49 32 23 26 49 57 67 89 84 61 72 66 58 56 90 47 84 45 74 47 100 29 34 87 47 25 83 90 40 31 41 73 4 41 71 35 60 98 48 39 41 7 87 61 81 52 68 13 79 20 100 51 67 4 21 44 36...
output:
56281 60060 57356 68879 61529 70028 66099 65871 68789 72953 58296 56780 66942 69428 56502 59396 60430 72721 55569 68153 53756 69404 61158 55211 57010 71040 71929 54812 73696 58504 68175 70053 68562 68920 67029 57567 63834 69532 54823 64783
result:
ok 40 numbers
Test #9:
score: 0
Accepted
time: 171ms
memory: 87128kb
input:
2 200000 8800 21777 33807 7508 41169 34983 54423 57197 66387 77451 45051 82026 86613 98746 80370 101146 105313 109767 111366 113091 117852 114257 122277 131527 122038 167974 170027 166043 172064 186770 184175 197964 196997 198573 205904 202932 208074 211526 227646 214940 229193 238630 229721 241165 ...
output:
5398667648 5311688815
result:
ok 2 number(s): "5398667648 5311688815"
Test #10:
score: 0
Accepted
time: 144ms
memory: 79828kb
input:
2 200000 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100 100...
output:
3758431 4322755
result:
ok 2 number(s): "3758431 4322755"
Test #11:
score: 0
Accepted
time: 144ms
memory: 79352kb
input:
2 200000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1000 1...
output:
23515506 29681187
result:
ok 2 number(s): "23515506 29681187"
Test #12:
score: 0
Accepted
time: 173ms
memory: 82308kb
input:
2 200000 999952233 999976412 999940766 999967142 999941003 999930196 999934027 999918088 999918396 999935752 999910715 999896335 999985232 999901405 999881287 999902906 999875401 999855733 999853754 999849824 999872551 999842149 999841957 999841546 999847364 999868855 999831997 999841525 999823216 9...
output:
758309269 2070755309
result:
ok 2 number(s): "758309269 2070755309"
Test #13:
score: 0
Accepted
time: 136ms
memory: 80148kb
input:
2 200000 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 ...
output:
589267 798840
result:
ok 2 number(s): "589267 798840"
Test #14:
score: 0
Accepted
time: 159ms
memory: 80348kb
input:
2 200000 3 4 3 5 4 1 2 3 1 5 6 3 1 1 1 5 6 6 6 1 6 4 2 5 6 1 5 7 3 1 1 8 2 4 7 8 7 2 1 8 8 9 4 6 7 7 7 5 9 3 9 5 7 8 5 7 3 5 4 7 1 3 8 8 1 4 3 3 8 2 9 11 3 9 8 9 9 11 11 8 10 9 12 9 2 10 1 10 7 10 9 2 9 10 13 9 4 10 13 12 13 8 7 13 9 14 11 14 4 14 8 14 13 12 10 9 15 10 11 5 2 9 14 12 15 14 16 3 16 1...
output:
1140065663 247172098
result:
ok 2 number(s): "1140065663 247172098"
Extra Test:
score: 0
Extra Test Passed