第45场周赛T2 4394. 最长连续子序列 (DAY 23)

文章目录
原题题目代码实现

原题题目

代码实现
#include
#include
#include

using namespace std;

const int N = 500010, M = 1000010;

int n, m;
int w[N], cnt[M];

int main()
{
scanf("%d%d", &n, &m);
for (int i = 1; i <= n; i ++ ) scanf("%d", &w[i]); int res = 0, l, r; for (int i = 1, j = 1, t = 0; i <= n; i ++ ) { if (cnt[w[i]] == 0) t ++ ; cnt[w[i]] +

第45场周赛T2 4394. 最长连续子序列 (DAY 23)最先出现在Python成神之路

版权声明:
作者:Mr李
链接:https://www.techfm.club/p/28938.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>