当前位置:网站首页>Value sequence (subsequence contribution problem)
Value sequence (subsequence contribution problem)
2022-07-07 07:45:00 【whitewall_ nine】
#include<bits/stdc++.h>
using namespace std;
#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,l,r) for(int i=(l);i>=(r);i--)
#define ll long long
#define pii pair<int, int>
#define mset(s,t) memset(s,t,sizeof(t))
#define mcpy(s,t) memcpy(s,t,sizeof(t))
#define fir first
#define pb push_back
#define sec second
#define sortall(x) sort((x).begin(),(x).end())
inline int read () {
int x = 0, f = 0;
char ch = getchar();
while (!isdigit(ch)) f |= (ch=='-'),ch= getchar();
while (isdigit(ch)) x = x * 10 + ch - '0', ch = getchar();
return f?-x:x;
}
template<typename T> void print(T x) {
if (x < 0) putchar('-'), x = -x;
if (x >= 10) print(x/10);
putchar(x % 10 + '0');
}
const int N = 1e6 + 10;
const int mod = 998244353;
int n;
ll a[N];
ll qmi (ll a, ll b, ll c ){
ll ans = 1;
while (b) {
if (b & 1) ans =ans * a %c;
b >>= 1;
a = a * a % mod;
}
return ans;
}
void solve() {
cin >> n;
for (int i = 1; i<= n ;i++) {
cin >> a[i];
}
//sort(a + 1, a + 1 + n);
ll ans = 1;
a[n + 1] = 2e18;
a[0] = 2e18;
for (int i = 1, j = 1; i <= n ; i ++) {
while (j < n && a[j + 1] == a[i]) {
j ++;
}
int len = j - i + 1;
if (((a[i - 1] < a[i] && a[j] < a[j + 1]) || (a[i - 1] > a[i] && a[j] > a[j + 1])) && ( i !=1 && j != n))
ans = (ans * qmi(2, j - i + 1, mod) %mod) %mod;
else {
ans = ((ans * ((qmi(2, j - i + 1, mod) - 1) %mod + mod) %mod) %mod + mod) %mod;
}
j ++;
i = j -1;
}
cout << ans << endl;
}
int main () {
int t;
cin >> t;
while (t --) solve();
return 0;
}
https://ac.nowcoder.com/acm/contest/23481/B The first question is which numbers will not have no impact on the contribution If n <= 2 Then delete any one of them, either unchanged or reduced , Therefore, we can guess that deleting a number in the sequence must not increase For one of the positions , There are four size relationships , It can be found that the contribution will not change after the order of increasing or decreasing is deleted , Otherwise, it must be reduced , So one must be left .
边栏推荐
- English translation is too difficult? I wrote two translation scripts with crawler in a rage
- 为什么要了解现货黄金走势?
- UWB learning 1
- My ideal software tester development status
- IO流 file
- I failed in the postgraduate entrance examination and couldn't get into the big factory. I feel like it's over
- 知识点滴 - 关于苹果认证MFI
- Pytorch parameter initialization
- Live online system source code, using valueanimator to achieve view zoom in and out animation effect
- 【性能压测】如何做好性能压测?
猜你喜欢

【Liunx】进程控制和父子进程
![[2022 CISCN]初赛 web题目复现](/img/1c/4297379fccde28f76ebe04d085c5a4.png)
[2022 CISCN]初赛 web题目复现

2022-07-06: will the following go language codes be panic? A: Meeting; B: No. package main import “C“ func main() { var ch chan struct

Asemi rectifier bridge rs210 parameters, rs210 specifications, rs210 package

L'externalisation a duré trois ans.

Make a bat file for cleaning system garbage

《动手学深度学习》(四) -- 卷积神经网络 CNN

nacos

Kbu1510-asemi power supply special 15A rectifier bridge kbu1510

misc ez_usb
随机推荐
科技云报道:从Robot到Cobot,人机共融正在开创一个时代
[webrtc] m98 Screen and Window Collection
English translation is too difficult? I wrote two translation scripts with crawler in a rage
【数学笔记】弧度
Wx is used in wechat applet Showtoast() for interface interaction
解决问题:Unable to connect to Redis
《动手学深度学习》(四) -- 卷积神经网络 CNN
Asemi rectifier bridge rs210 parameters, rs210 specifications, rs210 package
CentOS7下安装PostgreSQL11数据库
[UTCTF2020]file header
gslx680触摸屏驱动源码码分析(gslX680.c)
3、 High quality programming and performance tuning practical youth training camp notes
二、并发、测试笔记 青训营笔记
即刻报名|飞桨黑客马拉松第三期等你挑战
Gslx680 touch screen driver source code analysis (gslx680. C)
A concurrent rule verification implementation
今日现货白银操作建议
Simple example of ros2 planning system plansys2
nacos
知识点滴 - 关于苹果认证MFI