Submission #2497675


Source Code Expand

#include <bits/stdc++.h>
#define f first
#define s second
#define mp make_pair
#define pb push_back
#define ll long long
using namespace std;

string in;
int k;
vector<int>v;
vector<int>ans;

int main()
{
	cin.sync_with_stdio(0);		cin.tie(0);		cout.tie(0);

	cin >> in >> k;
	int p = in.size();

	for(int x = 0 ; x < p ; x++){
		int hash = 0;
		int val = 0;
		for(int y = x ; y < min(p, x + 5) ; y++){
			hash = hash * 27 + (in[y] - 'a' + 1);
			val++;
			int now = hash;
			for(int x = 4; x >= val ; x--){
				now = now * 27;
			}
			v.pb(now);
		}
	}
	sort(v.begin(), v.end());

	int siz = v.size();
	int jawab = 0;

	for(int x = 0 ; x < siz; x++){
		if(x == 0){
			k--;
		}else if(v[x] == v[x - 1]){
			continue;
		}else{
			k--;
		}
		if(k == 0){
			jawab = v[x];
			break;
		}
	}

	while(jawab > 0){
		int va = jawab % 27;
		jawab = jawab / 27;
		if(va == 0){
			continue;
		}else{
			ans.pb(va);
		}
	}
	int pp = ans.size();
	for(int x = pp - 1; x >= 0 ; x--){
		printf("%c",ans[x] + 'a' - 1);
	}
	printf("\n");
}	

Submission Info

Submission Time
Task C - K-th Substring
User andrewtheodore
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1086 Byte
Status AC
Exec Time 2 ms
Memory 512 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 200 / 200 100 / 100
Status
AC × 3
AC × 11
AC × 19
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
Subtask 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 2_011.txt, 2_012.txt, 2_013.txt, 2_014.txt, 2_015.txt, 2_016.txt, 2_017.txt, 2_018.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 256 KB
0_001.txt AC 1 ms 256 KB
0_002.txt AC 1 ms 256 KB
1_003.txt AC 1 ms 256 KB
1_004.txt AC 1 ms 256 KB
1_005.txt AC 1 ms 256 KB
1_006.txt AC 1 ms 256 KB
1_007.txt AC 1 ms 256 KB
1_008.txt AC 1 ms 256 KB
1_009.txt AC 1 ms 256 KB
1_010.txt AC 1 ms 256 KB
2_011.txt AC 2 ms 512 KB
2_012.txt AC 2 ms 512 KB
2_013.txt AC 2 ms 512 KB
2_014.txt AC 2 ms 512 KB
2_015.txt AC 2 ms 512 KB
2_016.txt AC 2 ms 512 KB
2_017.txt AC 2 ms 512 KB
2_018.txt AC 2 ms 512 KB