Submission #2495648


Source Code Expand

/**
 * File    : C.cpp
 * Author  : Kazune Takahashi
 * Created : 2018-5-12 20:48:31
 * Powered by Visual Studio Code
 */

#include <iostream>
#include <iomanip>   // << fixed << setprecision(xxx)
#include <algorithm> // do { } while ( next_permutation(A, A+xxx) ) ;
#include <vector>
#include <string> // to_string(nnn) // substr(m, n) // stoi(nnn)
#include <complex>
#include <tuple>
#include <queue>
#include <stack>
#include <map> // if (M.find(key) != M.end()) { }
#include <set>
#include <random> // random_device rd; mt19937 mt(rd());
#include <cctype>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <cstdlib>
using namespace std;

#define DEBUG 0 // change 0 -> 1 if we need debug.

typedef long long ll;

// const int dx[4] = {1, 0, -1, 0};
// const int dy[4] = {0, 1, 0, -1};

// const int C = 1e6+10;
// const ll M = 1000000007;

string s;
int K;
set<string> S;

int main()
{
  cin >> s;
  cin >> K;
  int N = (int)s.size();
  for (auto i = 0; i < N; i++)
  {
    for (auto j = 1; i + j <= N && j <= 5; j++)
    {
      S.insert(s.substr(i, j));
    }
  }
  auto it = S.begin();
  for (auto k = 0; k < K - 1; k++)
  {
    it++;
  }
  cout << *it << endl;
}

Submission Info

Submission Time
Task C - K-th Substring
User kazunetakahashi
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1241 Byte
Status AC
Exec Time 10 ms
Memory 1664 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 6 ms 256 KB
2_012.txt AC 4 ms 256 KB
2_013.txt AC 9 ms 1536 KB
2_014.txt AC 10 ms 1664 KB
2_015.txt AC 8 ms 1280 KB
2_016.txt AC 10 ms 1664 KB
2_017.txt AC 10 ms 1664 KB
2_018.txt AC 10 ms 1664 KB