codeforces 612 A. The Text Splitting
http://codeforces.com/contest/612/problem/A 水题...直接枚举就好。
/* ***********************************************
Author :111qqz
Created Time :2015年12月25日 星期五 22时58分26秒
File Name :code/cf/edu4/A.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int N=105;
int n,p,q;
char st[N];
bool v[10005];
int main()
{
#ifndef ONLINE_JUDGE
freopen("code/in.txt","r",stdin);
#endif
cin>>n>>p>>q;
cin>>st;
ms(v,false);
int b,c;
for ( int i = 0 ; i*p<=105 ; i++ )
{
for ( int j = 0 ; j*q <= 105 ; j++)
{
v[i*p+j*q] = true;
if (i*p+j*q==n)
{
b = i;
c = j;
}
}
}
// cout<<"b:"<<b<<endl;
// cout<<"c:"<<c<<endl;
if (!v[n])
{
puts("-1");
}
else
{
int cnt = 0 ;
printf("%d\n",b+c);
for ( int i = 1 ; i <= b ; i++)
{
for ( int i = 0 ; i < p ; i++)
printf("%c",st[cnt]),cnt++;
printf("\n");
}
for ( int i =1 ; i <= c ; i++)
{
for ( int i = 0 ; i < q ; i++)
printf("%c",st[cnt]),cnt++;
printf("\n");
}
}
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}