Codeforces Round #135 (Div. 2) A. k-String

37 篇文章 0 订阅


A. k-String
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A string is called a k-string if it can be represented as k concatenated copies of some string. For example, the string "aabaabaabaab" is at the same time a 1-string, a 2-string and a 4-string, but it is not a 3-string, a 5-string, or a 6-string and so on. Obviously any string is a 1-string.

You are given a string s, consisting of lowercase English letters and a positive integer k. Your task is to reorder the letters in the strings in such a way that the resulting string is a k-string.

Input

The first input line contains integer k (1 ≤ k ≤ 1000). The second line contains s, all characters in s are lowercase English letters. The string length s satisfies the inequality 1 ≤ |s| ≤ 1000, where |s| is the length of string s.

Output

Rearrange the letters in string s in such a way that the result is a k-string. Print the result on a single output line. If there are multiple solutions, print any of them.

If the solution doesn't exist, print "-1" (without quotes).

Sample test(s)
input
2
aazz
output
azaz
input
3
abcabcabz
output
-1
题意:输入n和一个字符串,问是否可以将字符串分成n个相同的字符串。水题~

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
bool cmp(char a,char b)
 {
     return a<b;
 }
int main()
{
   int k,i,j;
   char s[1005],a[1005];
 while(~scanf("%d",&k))
  {
     scanf("%s",s);
     int t=strlen(s);
     if(t%k!=0)
       {
           printf("-1\n");
           continue;
       }
    sort(s,s+t,cmp);
    int sum=1,flag=0;

  for(i=1;i<t;i++)
   {
       if(s[i]==s[i-1])
         sum++;
       else
         {
             if(sum%k!=0)
               { flag=1; break;}
            sum=1;

         }

   }
  if(flag==1)
     printf("-1\n");
  else
   {
      for(j=0;j<k;j++)
       for(i=0;i<t;i+=k)
          printf("%c",s[i]);
   }
  printf("\n");
  }
  return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值