zoukankan      html  css  js  c++  java
  • CodeForces 400A Inna and Choose Options

    Inna and Choose Options

    Time Limit: 1000ms
    Memory Limit: 262144KB
    This problem will be judged on CodeForces. Original ID: 400A
    64-bit integer IO format: %I64d      Java class name: (Any)
     
    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

    Source

     
    解题:直接乱来
     
     1 #include <bits/stdc++.h>
     2 using  namespace std;
     3 char str[20];
     4 int n,d[] = {1,2,3,4,6,12};
     5 vector<int>ans;
     6 int main(){
     7     scanf("%d",&n);
     8     while(n--){
     9         scanf("%s",str);
    10         ans.clear();
    11         for(int i = 0; i < 6; ++i){
    12             for(int j = 0; j < 12/d[i]; ++j){
    13                 bool flag = true;
    14                 for(int k = 0; k < d[i]; ++k)
    15                     if(str[k*12/d[i] + j] != 'X') {
    16                         flag = false;
    17                         break;
    18                     }
    19                 if(flag) {ans.push_back(d[i]);break;}
    20             }
    21         }
    22         printf("%d",ans.size());
    23         for(int i = 0; i < ans.size(); ++i)
    24             printf(" %dx%d",ans[i],12/ans[i]);
    25         putchar('
    ');
    26     }
    27     return 0;
    28 }
    View Code
  • 相关阅读:
    php获取某年某月的天数
    处理银行卡每隔4位数用空格隔开(正则表达式)
    刚看到一个前端面试题, 左边固定,右边自适应, 就根据自己想的自己写了下试试
    Yii中利用filters来控制访问
    Yii中使用RBAC完全指南
    自动把 替换成<p></p>
    统计汉字
    php执行linux函数
    java 与 R 相互调用
    Deep Learning 深度学习 学习教程网站集锦(转)
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4619654.html
Copyright © 2011-2022 走看看