-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDistinct Palindrome.cpp
More file actions
127 lines (111 loc) · 1.87 KB
/
Distinct Palindrome.cpp
File metadata and controls
127 lines (111 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/*
***** !!!!! JAI SHREE KRISHNA !!!!! *****
Date -> 13th September 2023
Code by - Abhinav Anand
Problem link -> https://www.codechef.com/problems/DISPAL
*/
#include <iostream>
#include <algorithm>
#include <bits/stdc++.h>
#define ll long long int
#define nl "\n"
using namespace std;
int N=1000001;
int mod=1000000007;
vector<int> arr(N,true);
vector<int> prime_num;
vector<int> prime_fact(N,-1);
void sieve()
{
arr[0]=arr[1]=0;
for(int i=2;i<=sqrt(N);i++)
{
if(arr[i]==1)
{
for(int j=i*i;j<=N;j+=i)
arr[j]=0;
}
}
for(int i=2;i<=N;i++)
{
if(arr[i])
prime_num.push_back(i);
}
}
void sieve_prime_factor()
{
for(int i=2;i<=N;i++)
{
if(prime_fact[i]==-1)
{
for(int j=i;j<=N;j+=i)
{
// if(prime_fact[j]==-1)
prime_fact[j]=i;
}
}
}
int k;
cin>>k;
while(k>1)
{
cout << prime_fact[k] << " ";
k=k/prime_fact[k];
}
}
bool isprime(int n)
{
for(int i=2;i<=sqrt(n);i++)
{
if(n%i==0)
return false;
}
return true;
}
void solve()
{
// ios_base::sync_with_stdio(0);
// cout.precision(7);
int n, x;
cin >> n >> x;
if (n == 1)
{
cout << "a\n";
return;
}
if (n < (2 * x) - 1)
{
cout << "-1\n";
return;
}
string ans = "";
int i = 0;
for (char a = 'a'; i < x; i++, a++)
ans += a;
string last = ans;
reverse(last.begin(), last.end());
n -= (2 * x);
if (n < 0)
{
cout << ans;
for (int i = x - 2; i >= 0; i--)
cout << ans[i];
cout << endl;
return;
}
while (n--)
ans += 'a';
ans += last;
cout << ans << endl;
}
int main() {
//sieve_prime_factor();
// sieve();
int t;
cin>>t;
while(t--)
{
solve();
}
return 0;
}