我是靠谱客的博主 淡淡口红,最近开发中收集的这篇文章主要介绍A. Inna and Choose Options,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 test(s)
input
4
OXXXOXOOXOOX
OXOXOXOXOXOX
XXXXXXXXXXXX
OOOOOOOOOOOO
output
3 1x12 2x6 4x3
4 1x12 2x6 3x4 6x2
6 1x12 2x6 3x4 4x3 6x2 12x1
0

解题说明:题目大意是给出12张牌,这12张牌只有两种字符‘X','O',有a*b=12,将这12张牌组成a*b的矩阵,其中前b张作为第一行,再后边的b张作为第二行,依次继续,例如abcdefghijkl,划分成3*4的就是这样子的

abcd
efgh
ijkl

如果有某一列全部是’X',那么就输出这样的a和b,可以用遍历的方法来实现

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstdlib>
#include <algorithm>
#include<cstring>
using namespace std;

char str[15];

void solve() 
{
	int A = 0;
	int ans[10];
	for (int i = 1; i <= 12; i++) 
	{
		if (12 % i == 0) 
		{
			int x = 12 / i, y;
			for (int k = 0; k<x; k++) 
			{
				y = 1;
				for (int j = k; j < 12; j += x)
				{
					if (str[j] == 'O')
					{
						y = 0;
					}
				}
				if (y) 
				{
					ans[A++] = i;
					break;
				}
			}
		}
	}
	printf("%d ", A);
	
	for (int i = 0; i < A; i++)
	{
		printf("%dx%d ", ans[i], 12 / ans[i]);
	}
}


int main() 
{
	int t, T;
	scanf("%d", &T);
	for (int t = 0; t<T; t++) 
	{
		scanf("%s", str);
		solve();
		printf("n");
	}
}


最后

以上就是淡淡口红为你收集整理的A. Inna and Choose Options的全部内容,希望文章能够帮你解决A. Inna and Choose Options所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(64)

评论列表共有 0 条评论

立即
投稿
返回
顶部