hiho一下 第230周-----Smallest Substring

Smallest Substring

时间限制:10000ms

单点时限:1000ms

内存限制:256MB

描述

Given a string S and an integer K, your task is to find the lexicographically smallest string T which satisfies:  

1. T is a subsequence of S

2. The length of T is K.

输入

The first line contain an integer K. (1 <= K <= 100000)

The second line contains a string of lowercase letters. The length of S is no more than 100000.

输出

The string T.

样例输入

4  
cacbbac

样例输出

abac

先给出官方的思路:https://hihocoder.com/discuss/question/5616

我的思路:我是用的C++中Vector实现的,其主要是统计26个字母中每个字母在主字符串中出现的位置,然后依次遍历每个字母是否满足条件,条件为:当前考虑的字母出现的位置其后还剩下的所有字母个数必须大于我们还需要添加在子串中的字母个数,并且当前考虑的字母位置还需要大于上一次我们添加在子串中字母的位置。遍历时,我们一直从a~z遍历,这样可以保证一定是最小字典顺序,只要找到当前满足条件的字母,就结束当次循环,然后寻找下一个字母。

#include
#include
#include
#include
#include
using namespace std;
vectorG[27];//用邻接表记录每个字符的每一个位置 
int vis[27];//记录已经用到某个字符在主字符串中那个位置了,共26个字母,分别用1~26记录 
int k;
char s[100010];
char str[100010];//统计我们需要的子串 
int main(){
	cin>>k;
	cin>>s;
	int n=strlen(s);
	for(int i=0;i<27;i++) G[i].clear();//开始前,清空所有的字符 
	for(int i=0;i=G[j].size()) continue;//当前位置已经多余该字母在主串中出现的次数,则不需要继续执行 
			//依次遍历每个位置,并判断是否满足条件 
			for(int y=u;y=k-i-1,这句的意思是从x往后的字母个数要多余我们剩下还需要添加的字母个数 ,并且当前处理字母的位置需要大于上一次我们用的位置 
				if(n-1-x>=k-i-1 && x>pos){
					str[i]=s[x];
					pos=x;//统计用过的位置 
					vis[j]=y+1;//下一次若需要用时,从该位置起 
					flag=true;
					break;//满足,跳出该循环 
				}
			}
			if(flag) break;//说明该字符在该位置已经满足条件,不需要再判断后面的 
		}
	}
	str[k]='\0';//结束符 
	cout<

 

你可能感兴趣的:(hiho一下 第230周-----Smallest Substring)