D. Array Restoration

这题想一下就会发现是只要两个相同的数之间没有比它小的就可以,就是保存一下数第一次出现和最后一次出现的位置,然后查询一下这个区间就可以,如果有0的话就进行填充。

这个题我是用RMQ(ST)进行查询的,在初始化的时候,如果有0就把0变成2e5+1,因为数据最大2e5,然后区间查询就可以了,关于RMQ(ST),以前写过博客,有兴趣的可以看一下

RMQ(ST)详解

这个题坑点很多,首先如果这个序列一开始的最大值比m小,并且没有0,那么就是NO,有0就先把一个0变成m,然后填充的时候,如果一开始的最大值就是0,说明全部为0,那么直接把所有0变成m然后输出就可以了。其他的具体的看代码吧,写了注释。

代码:

  1 //D-区间查询最值,RMQ查询
2 #include<iostream>
3 #include<cstdio>
4 #include<cstring>
5 #include<algorithm>
6 #include<bitset>
7 #include<cassert>
8 #include<cctype>
9 #include<cmath>
10 #include<cstdlib>
11 #include<ctime>
12 #include<deque>
13 #include<iomanip>
14 #include<list>
15 #include<map>
16 #include<queue>
17 #include<set>
18 #include<stack>
19 #include<vector>
20 using namespace std;
21 typedef long long ll;
22
23 const double PI=acos(-1.0);
24 const double eps=1e-6;
25 const ll mod=1e9+7;
26 const int inf=0x3f3f3f3f;
27 const int maxn=2*1e5+10;
28 const int maxm=100+10;
29 #define ios ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
30
31 int a[maxn],mm[maxn][maxm],mi[maxn][maxm];
32 int n,m,MIN,MAX;
33
34 void ST()
35 {
36 for(int i=1;i<=n;i++){
37 if(a[i]!=0)
38 mm[i][0]=mi[i][0]=a[i];
39 else
40 mm[i][0]=mi[i][0]=2*1e5+1;//把0变成最大的
41 }
42 for(int j=1;(1<<j)<=n;j++){
43 for(int i=1;i+(1<<j)-1<=n;i++){
44 mm[i][j]=max(mm[i][j-1],mm[i+(1<<(j-1))][j-1]);
45 mi[i][j]=min(mi[i][j-1],mi[i+(1<<(j-1))][j-1]);
46 }
47 }
48 }
49
50 void RMQ(int l,int r)
51 {
52 int k=0;
53 while((1<<(k+1))<=r-l+1)k++;
54 MAX=max(mm[l][k],mm[r-(1<<k)+1][k]);
55 MIN=min(mi[l][k],mi[r-(1<<k)+1][k]);
56 }
57
58 vector<int> vec[maxn];//保存数出现的所有位置
59
60 int main()
61 {
62 cin>>n>>m;
63 int flag=0,maxx=-1,pos=0;
64 for(int i=1;i<=n;i++){
65 cin>>a[i];
66 maxx=max(maxx,a[i]);
67 if(a[i]==0)pos=i;
68 vec[a[i]].push_back(i);
69 }
70 if(maxx<m&&maxx>0&&pos!=0) a[pos]=m;//如果一开始所有数都小于m,就把一个0变成m
71 else if(maxx==0){//如果所有数都为0,直接全变成0然后输出就可以了
72 for(int i=1;i<=n;i++)
73 a[i]=m;
74 cout<<"YES"<<endl;
75 for(int i=1;i<=n-1;i++)
76 cout<<a[i]<<" ";
77 cout<<a[n]<<endl;
78 return 0;
79 }
80 else if(maxx<m&&pos==0){//如果最大值小于m并且没有0,就是NO
81 cout<<"NO"<<endl;
82 return 0;
83 }
84 ST();
85 for(int i=1;i<=m;i++){
86 if(vec[i].size()!=0){
87 int l=vec[i][0];//值为i的数第一次出现的位置
88 int r=vec[i][vec[i].size()-1];//最后一次出现的位置
89 RMQ(l,r);
90 if(MIN<i){//查询区间的最小值
91 flag=1;
92 break;
93 }
94 }
95 }
96 if(flag==1){
97 cout<<"NO"<<endl;
98 return 0;
99 }
100 for(int i=1;i<=n;i++){
101 if(a[i]==0){
102 for(int j=i+1;j<=n;j++){//从当前位置找第一个不为0的数
103 if(a[j]==0) continue;
104 else{
105 a[i]=a[j];
106 break;
107 }
108 }
109 if(a[i]==0) a[i]=a[i-1];//如果右端点全为0,就填充左边的数
110 }
111 }
112 cout<<"YES"<<endl;
113 for(int i=1;i<=n-1;i++)
114 cout<<a[i]<<" ";
115 cout<<a[n]<<endl;
116 }

嘤嘤嘤,溜了。

Codeforces 1023 D.Array Restoration-RMQ(ST)区间查询最值 (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)的更多相关文章

  1. Codeforces 1023 A.Single Wildcard Pattern Matching-匹配字符 (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)

    Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final) A. Single Wildcard Patter ...

  2. Codeforces 1023 C.Bracket Subsequence-STL(vector) (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)

    C. Bracket Subsequence ... 代码: 1 //C 2 #include<iostream> 3 #include<cstdio> 4 #include& ...

  3. Codeforces 1023 B.Pair of Toys (Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Fi)

    B. Pair of Toys 智障题目(嘤嘤嘤~) 代码: 1 //B 2 #include<iostream> 3 #include<cstdio> 4 #include& ...

  4. codeforces 1023 D. Array Restoration 并查集

    D. Array Restoration time limit per test 1 second memory limit per test 256 megabytes input standard ...

  5. Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)-D- Array Restoration

    我们知道不满足的肯定是两边大中间小的,这样就用RMQ查询两个相同等值的区间内部最小值即可,注意边界条件 #include<bits/stdc++.h> #define x first #d ...

  6. E - Down or Right Codeforces Round #504 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)

    http://codeforces.com/contest/1023/problem/E 交互题 #include <cstdio> #include <cstdlib> #i ...

  7. D. Recovering BST Codeforces Round #505 (rated, Div. 1 + Div. 2, based on VK Cup 2018 Final)

    http://codeforces.com/contest/1025/problem/D 树 dp 优化 f[x][y][0]=f[x][z][1] & f[z+1][y][0] ( gcd( ...

  8. Codeforces Round #477 (rated, Div. 2, based on VK Cup 2018 Round 3) F 构造

    http://codeforces.com/contest/967/problem/F 题目大意: 有n个点,n*(n-1)/2条边的无向图,其中有m条路目前开启(即能走),剩下的都是关闭状态 定义: ...

  9. Codeforces Round #477 (rated, Div. 2, based on VK Cup 2018 Round 3) E 贪心

    http://codeforces.com/contest/967/problem/E 题目大意: 给你一个数组a,a的长度为n 定义:b(i) = a(1)^a(2)^......^a(i), 问, ...

随机推荐

  1. [剑指Offer] 25.复杂链表的复制

    /* struct RandomListNode { int label; struct RandomListNode *next, *random; RandomListNode(int x) : ...

  2. 【bzoj2659】[Beijing wc2012]算不出的算式 数论

    题目描述 求,其中p和q是奇质数. 输入 只有一行,两个奇质数,分别表示p,q. 输出 一个数,表示算式结果. 样例输入 5 样例输出 6 题解 数论 神TM数学结论题... 当$p\neq q$时, ...

  3. LeetCode--Factorial Trailing Zeroes(注意)

    Given an integer n, return the number of trailing zeroes in n!. 问题描述:给出一个正整数n,计算n!结构后面有几个0.要求:在多项式时间 ...

  4. 【题解】洛谷P1975排序

    分块,注意重复的值之间的处理.跟普通分块的操作一样的啦,具体可以参见‘不勤劳的图书管理员’. #include <bits/stdc++.h> using namespace std; # ...

  5. JavaScript渐变效果的实现

    鼠标移上去透明度渐渐增加,鼠标移出,透明度渐渐减小. 关键代码: view source   print? 1 var speed = 0; 2 if(target>obj.alpha){ 3 ...

  6. 如何使用Navicat备份数据库脚本

    Navicat是一个实用的工具,可以用来备份数据库(Oracle.MySQL.SQLServer)脚本. 备份步骤如下: 1.打开已建立的数据库连接,鼠标右键点击,选择[转储SQL文件]->[结 ...

  7. Python爬虫学习笔记之爬今日头条的街拍图片

    代码: import requests import os from hashlib import md5 from urllib.parse import urlencode from multip ...

  8. MySQL远程访问权限 允许远程连接

    1 首先cd / 到根目录,打开mysql控制台 登录数据库  mysql -u root -p 2.授权远程连接 mysql> use mysql; Database changed mysq ...

  9. HDU 2089 不要62 (数学)

    题目链接 Problem Description 杭州人称那些傻乎乎粘嗒嗒的人为62(音:laoer). 杭州交通管理局经常会扩充一些的士车牌照,新近出来一个好消息,以后上牌照,不再含有不吉利的数字了 ...

  10. react+redux基础用法

    在学react的是,发现一旦我们封装好了我们的组件,那么我们的项目就跟搭积木一样简单快速,可是我们发现了一个问题,在一个页面往往会嵌套很多的组件,子组件必须要通过父组件传递参数才能渲染出数据,我们回想 ...