• Codeforces Round #234 (Div. 2) A. Inna and Choose Options 模拟题


    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
    
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    int main()
    {
        int t;
        cin>>t;
        string s;
        while(t--)
        {
            cin>>s;
            int ans=0;
            int flag[6];
            memset(flag,0,sizeof(flag));
            for(int i=0;i<12;i++)
            {
                if(s[i]=='X')
                {
                    ans++;
                    flag[0]=1;
                    break;
                }
            }
            for(int i=0;i<6;i++)
            {
                if(s[i]=='X'&&s[i+6]=='X')
                {
                    ans++;
                    flag[1]=1;
                    break;
                }
            }
            for(int i=0;i<4;i++)
            {
                if(s[i]=='X'&&s[i+4]=='X'&&s[i+8]=='X')
                {
                    ans++;
                    flag[2]=1;
                    break;
                }
            }
            for(int i=0;i<3;i++)
            {
                if(s[i]=='X'&&s[i+3]=='X'&&s[i+6]=='X'&&s[i+9]=='X')
                {
                    ans++;
                    flag[3]=1;
                    break;
                }
            }
            for(int i=0;i<2;i++)
            {
                if(s[i]=='X'&&s[i+2]=='X'&&s[i+4]=='X'&&s[i+6]=='X'&&s[i+8]=='X'&&s[i+10]=='X')
                {
                    ans++;
                    flag[4]=1;
                    break;
                }
            }
            ans++;
            flag[5]++;
            for(int i=0;i<12;i++)
            {
                if(s[i]=='O')
                {
                    ans--;
                    flag[5]--;
                    break;
                }
            }
            cout<<ans;
            //6 1x12 2x6 3x4 4x3 6x2 12x1
            if(flag[0]==1)
                cout<<" "<<"1x12";
            if(flag[1]==1)
                cout<<" "<<"2x6";
            if(flag[2]==1)
                cout<<" "<<"3x4";
            if(flag[3]==1)
                cout<<" "<<"4x3";
            if(flag[4]==1)
                cout<<" "<<"6x2";
            if(flag[5]==1)
                cout<<" "<<"12x1";
            cout<<endl;
        }
        return 0;
    }
  • 相关阅读:
    ADERA3 省选模拟赛 SPOJ LMCONST
    TYVJ 1730 二逼平衡树 线段树套平衡树
    BZOJ 1059 [ZJOI2007]矩阵游戏 二分图匹配
    BZOJ 1056 [HAOI2008]排名系统 Splay+Hash
    OI教会我的
    BZOJ 1055 [HAOI2008]玩具取名 DP
    BZOJ 1058 [ZJOI2007]报表统计 Splay
    为自己而奋斗
    [总结]高斯消元&XOR方程
    我 的 2013
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4138248.html
Copyright © 2020-2023  润新知