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.
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.
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.
4 OXXXOXOOXOOX OXOXOXOXOXOX XXXXXXXXXXXX OOOOOOOOOOOO
3 1x12 2x6 4x3 4 1x12 2x6 3x4 6x2 6 1x12 2x6 3x4 4x3 6x2 12x1 0
这个题目的意思确实是不好懂的,它的意思是问在一个字符串里,是否可以存在一个a*b,使其每隔b都可以让其等
于“x",就行了,模拟判断一下就行,我现在愈加发现对我来说,题目的难度不在于代码有多难,而在于题目看不
懂!!!!!!!!!!!
#include<iostream> #include<cstdio> #include<cstring> struct node { int a; int b; int flag; }unit[10]; int main() { int i,j,k; int T; scanf("%d",&T); while(T--) { char s[20]; scanf("%s",s); int num=0; for(i=1;i<=12;i++) { if(12%i==0) { unit[num].a=i; unit[num].b=12/i; unit[num].flag=0;//还不行; num++; } } int flag=0; for(i=0;i<12;i++) { if(s[i]=='X') { flag=1; break; } } if(!flag) { // printf("fdsjldsfj\n"); printf("0\n"); continue; } int h1=0; int h2=0; for(h1=0;h1<num;h1++) { for(i=0;i<unit[h1].b;i++) { int flag=1; for(j=i;j<12;j=j+unit[h1].b) { if(s[j] == 'O') { flag=0; } } if (flag) { unit[h1].flag=1; h2++; break; } } } printf("%d",h2); for(i=0;i<num;i++) { if(unit[i].flag) { printf(" %dx%d",unit[i].a,unit[i].b); } } printf("\n"); /*for(i=0;i<num;i++) { printf("%d h %d\n",unit[i].a,unit[i].b); } printf("%d\n",num);*/ } return 0; }