A - Inna and Choose Options

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=97343#problem/A


A - Inna and Choose Options
Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit  Status  Practice  CodeForces 400A

Description

There always is something to choose from! And now, instead of "Noughts and Crosses", Inna choose a very unusual upgrade of this game. The rules of the game are given below:

There is one person playing the game. Before the beginning of the game he puts 12 cards in a row on the table. Each card contains a character: "X" or "O". Then the player chooses two positive integers a and b(a·b = 12), after that he makes a table of size a × b from the cards he put on the table as follows: the first b cards form the first row of the table, the second b cards form the second row of the table and so on, the last b cards form the last (number a) row of the table. The player wins if some column of the table contain characters "X" on all cards. Otherwise, the player loses.

Inna has already put 12 cards on the table in a row. But unfortunately, she doesn't know what numbers a and b to choose. Help her win the game: print to her all the possible ways of numbers a, b that she can choose and win.

Input

The first line of the input contains integer t(1 ≤ t ≤ 100). This value shows the number of sets of test data in the input. Next follows the description of each of the t tests on a separate line.

The description of each test is a string consisting of 12 characters, each character is either "X", or "O". The i-th character of the string shows the character that is written on the i-th card from the start.

Output

For each test, print the answer to the test on a single line. The first number in the line must represent the number of distinct ways to choose the pair a, b. Next, print on this line the pairs in the format axb. Print the pairs in the order of increasing first parameter (a). Separate the pairs in the line by whitespaces.

Sample Input

Input
4
OXXXOXOOXOOX
OXOXOXOXOXOX
XXXXXXXXXXXX
OOOOOOOOOOOO
Output
3 1x12 2x6 4x3
4 1x12 2x6 3x4 6x2
6 1x12 2x6 3x4 4x3 6x2 12x1
0
比如第一组数据,  3 1x12  2x6  4x3

OXXXOXOOXOOX   ->1x12
OXXXOX
OOXOOX   ->2x6
OOX
XOX
OOX
OOX  ->4x3
存在某一列全是X
下面给出代码
#include <iostream>
#include <string.h>
using namespace std;

int main()
{
    int n;
    char s[20];
    int lenth[6]= {12,6,4,3,2,1};
    int flag[6];
    cin>>n;
    while(n--)
    {
        for(int i=1; i<13; i++)
            cin>>s[i];
        memset(flag,0,sizeof(flag));


        for(int j=1; j<13; j++)
        {
            if(s[j]=='X')
            {
                flag[0]=1;
                break;
            }
        }
        if(flag[0]==0)
        {
            cout<<0<<endl;
            continue;
        }
        for(int j=1; j<=6; j++)
            if(s[j+6]=='X'&&s[j]=='X')
                flag[1]=1;
        for(int j=1; j<=4; j++)
            if(s[j+4]=='X'&&s[j]=='X'&&s[j+8]=='X')
                flag[2]=1;
        for(int j=1; j<=3; j++)
            if(s[j+3]=='X'&&s[j]=='X'&&s[j+6]=='X'&&s[j+9]=='X')
                flag[3]=1;
        for(int j=1; j<=2; j++)
            if(s[j+2]=='X'&&s[j]=='X'&&s[j+4]=='X'&&s[j+6]=='X'&&s[j+8]=='X'&&s[j+10]=='X')
                flag[4]=1;
           int ff=0;
        for(int j=1;j<13;j++)
        {
            if(s[j]=='O')
            ff=1;
        }
        if(ff==0)
        flag[5]=1;
        int sum=0;
        for(int i=0;i<6;i++)
        if(flag[i]==1)
        sum++;
        cout<<sum;
        for(int i=0;i<6;i++)
        {
            if(flag[i]==1)
            cout<<" "<<12/lenth[i]<<"x"<<lenth[i];
        }
        cout<<endl;



    }

    return 0;
}







你可能感兴趣的:(A - Inna and Choose Options)