Codeforces 395 B2. iwiwi


构造。。。

B2. iwiwi
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Codeforces users sometimes have very interesting handles! For example, you can meet a grandmaster from Japan named iwiwior an international grandmaster from Taiwan by name 0O0o00OO0Oo0o0Oo.

To be honest, Polycarpus prefers handle iwiwi to 0O0o00OO0Oo0o0Oo.

Polycarpus noticed that in many fonts the width of letter w is exactly twice wider that the width of letter i. Now he wants to write all sorts of strings containing letters i and w on a board exactly as wide as n letters i. He doesn't want the problem to be too easy, so Polycarpus added another limit: each consequence string must be different from the previous one:

  • either by replacing two consecutive letters i by one letter w,
  • or be replacing letter w by two consecutive letters i.

For example, string iii can follow after string iw, as the second string results after replacing w by ii in the first one. String wi can follow after string iii, as it is obtained by replacing ii by w.

Help Polycarpus, print all strings of width of exactly n letters i in the described manner. For each pair of consecutive strings there must be exactly one replacement by exactly one of the given rules. The written sequence doesn't have to be cycled, that is, the first string isn't considered consequent for the last string.

Input

The single line of the input contains a positive integer n. The limits for n are different for the subproblems:

  • for subproblem B1, the following inequation fulfills 1 ≤ n ≤ 5,
  • for subproblem B2, the following inequation fulfills 1 ≤ n ≤ 20.
Output

Print all strings of letters i and w, such that i + 2w = n, where i — the number of letters i, and w — the number of letters w. Print the strings in the order that is described in the problem.

If there are many answers, print any of them.

Sample test(s)
input
3
output
iw
iii
wi

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <vector>
#include <algorithm>

using namespace std;

vector<string> vs[30];

int main()
{
    vs[1].push_back("i");
    vs[2].push_back("ii");
    vs[2].push_back("w");

    int n;
    scanf("%d",&n);

    if(n==1) puts("i");
    else if(n==2) puts("ii\nw");
    else
    {
        int s;
        for(int i=3;i<=n;i++)
        {
            s=vs[i-1].size();
            for(int j=s-1;j>=0;j--)
            {
                vs[i].push_back("i"+vs[i-1][j]);
            }
            s=vs[i-2].size();
            for(int j=s-1;j>=0;j--)
            {
                vs[i].push_back("w"+vs[i-2][j]);
            }
        }
        s=vs[n].size();
        for(int i=0;i<s;i++)
        {
            cout<<vs[n][i]<<endl;
        }
    }

    return 0;
}



  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值