QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#368020 | #6753. Medians | milet | AC ✓ | 350ms | 238200kb | C++20 | 1.8kb | 2024-03-26 18:36:44 | 2024-03-26 18:36:44 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ls(x) ((x) << 1)
#define rs(x) ((x) << 1 | 1)
#define lowbit(x) ((x) & (-x))
const int N = 10010007;
const int M = 120;
const int INF = (1ull << 60) - 1;
const int mod = 998244353;
using pii = pair<int, int>;
using ll = long long;
struct node{
int l;int r;
int num;
}b[N];
int a[N];
int p[N];
int ans[N];
void solve(){
int n;
cin >> n;
cin >> a[0];
const int P = 1e9 + 7;
for (int i = 1;i <= n;i++)a[i] = (1LL * a[i - 1] * mod + P) % (P + 2);
for (int i = 1;i <= n;i++)p[i] = i;
for (int i = 1;i <= n;i++)swap(p[i], p[a[i] % i + 1]);
for (int i = 1;i <= n;i++){
b[i].l = i - 1;
b[i].r = i + 1;
b[i].num = i;
}
int mid = (n + 1)/2;
b[0].r = 1;
b[n + 1].l = n;
for (int i = n;i >= 1;i--){
ans[i] = b[mid].num;
//cout << ans[i] << '\n';
int L = b[p[i]].l;
int R = b[p[i]].r;
b[L].r = R;
b[R].l = L;
if (i & 1){
if (p[i] == b[mid].num)mid = b[mid].l;
else if (p[i] > b[mid].num)mid = b[mid].l;
}
else{
if (p[i] == b[mid].num)mid = b[mid].r;
else if (p[i] < b[mid].num)mid = b[mid].r;
}
}
ll sum = 0;
ll res = 19;
for (int i = 1;i <= n;i++){
sum = (1LL * ans[i] * res % mod + 1LL * sum ) % mod;
//cout << ans[i] << " " << sum << '\n';
res *= 19;
res %= mod;
}
cout << sum << '\n';
}
void init(int n,int k) {
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
int T = 1;
//cin >> T;
while (T--) {
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 9704kb
input:
5 0
output:
7703113
result:
ok 1 number(s): "7703113"
Test #2:
score: 0
Accepted
time: 1ms
memory: 9760kb
input:
5 1
output:
7840977
result:
ok 1 number(s): "7840977"
Test #3:
score: 0
Accepted
time: 1ms
memory: 9748kb
input:
2 1361955
output:
399
result:
ok 1 number(s): "399"
Test #4:
score: 0
Accepted
time: 1ms
memory: 9760kb
input:
4 207579012
output:
274740
result:
ok 1 number(s): "274740"
Test #5:
score: 0
Accepted
time: 1ms
memory: 9748kb
input:
8 628145516
output:
783389330
result:
ok 1 number(s): "783389330"
Test #6:
score: 0
Accepted
time: 1ms
memory: 9808kb
input:
16 376140462
output:
772072366
result:
ok 1 number(s): "772072366"
Test #7:
score: 0
Accepted
time: 0ms
memory: 9756kb
input:
32 883515280
output:
822906393
result:
ok 1 number(s): "822906393"
Test #8:
score: 0
Accepted
time: 1ms
memory: 9756kb
input:
64 186969585
output:
536948870
result:
ok 1 number(s): "536948870"
Test #9:
score: 0
Accepted
time: 1ms
memory: 9704kb
input:
128 762888635
output:
914896632
result:
ok 1 number(s): "914896632"
Test #10:
score: 0
Accepted
time: 2ms
memory: 9760kb
input:
256 326402539
output:
816864808
result:
ok 1 number(s): "816864808"
Test #11:
score: 0
Accepted
time: 0ms
memory: 9756kb
input:
512 98152102
output:
792934555
result:
ok 1 number(s): "792934555"
Test #12:
score: 0
Accepted
time: 1ms
memory: 9704kb
input:
1024 158176572
output:
187304261
result:
ok 1 number(s): "187304261"
Test #13:
score: 0
Accepted
time: 1ms
memory: 9720kb
input:
2048 61402883
output:
881629018
result:
ok 1 number(s): "881629018"
Test #14:
score: 0
Accepted
time: 1ms
memory: 9768kb
input:
4096 127860889
output:
926052991
result:
ok 1 number(s): "926052991"
Test #15:
score: 0
Accepted
time: 2ms
memory: 11840kb
input:
8192 9580638
output:
18767865
result:
ok 1 number(s): "18767865"
Test #16:
score: 0
Accepted
time: 2ms
memory: 9820kb
input:
16384 570870044
output:
676635475
result:
ok 1 number(s): "676635475"
Test #17:
score: 0
Accepted
time: 0ms
memory: 9840kb
input:
32768 646139319
output:
121314798
result:
ok 1 number(s): "121314798"
Test #18:
score: 0
Accepted
time: 3ms
memory: 11860kb
input:
65536 178509022
output:
518784793
result:
ok 1 number(s): "518784793"
Test #19:
score: 0
Accepted
time: 4ms
memory: 12312kb
input:
131072 484027666
output:
783563468
result:
ok 1 number(s): "783563468"
Test #20:
score: 0
Accepted
time: 7ms
memory: 16984kb
input:
262144 61263304
output:
560815556
result:
ok 1 number(s): "560815556"
Test #21:
score: 0
Accepted
time: 10ms
memory: 23876kb
input:
524288 841082555
output:
478037004
result:
ok 1 number(s): "478037004"
Test #22:
score: 0
Accepted
time: 19ms
memory: 36304kb
input:
1048576 558212774
output:
145045199
result:
ok 1 number(s): "145045199"
Test #23:
score: 0
Accepted
time: 50ms
memory: 59548kb
input:
2097152 940563715
output:
267114566
result:
ok 1 number(s): "267114566"
Test #24:
score: 0
Accepted
time: 115ms
memory: 108788kb
input:
4194304 26389620
output:
535216368
result:
ok 1 number(s): "535216368"
Test #25:
score: 0
Accepted
time: 277ms
memory: 207260kb
input:
8388608 579113528
output:
926081338
result:
ok 1 number(s): "926081338"
Test #26:
score: 0
Accepted
time: 324ms
memory: 238116kb
input:
10000000 496147999
output:
872799419
result:
ok 1 number(s): "872799419"
Test #27:
score: 0
Accepted
time: 333ms
memory: 238060kb
input:
10000000 925801172
output:
676521567
result:
ok 1 number(s): "676521567"
Test #28:
score: 0
Accepted
time: 320ms
memory: 238200kb
input:
10000000 837151740
output:
617759049
result:
ok 1 number(s): "617759049"
Test #29:
score: 0
Accepted
time: 350ms
memory: 238104kb
input:
10000000 70301164
output:
413391579
result:
ok 1 number(s): "413391579"
Test #30:
score: 0
Accepted
time: 324ms
memory: 238116kb
input:
10000000 656585275
output:
505441893
result:
ok 1 number(s): "505441893"
Test #31:
score: 0
Accepted
time: 318ms
memory: 238104kb
input:
10000000 285845005
output:
465986348
result:
ok 1 number(s): "465986348"
Test #32:
score: 0
Accepted
time: 348ms
memory: 238116kb
input:
10000000 902071050
output:
964328151
result:
ok 1 number(s): "964328151"