HDU 4813 Hard Code

迈不过友情╰ 2022-09-28 11:56 147阅读 0赞

Hard Code

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1520 Accepted Submission(s): 1103

Problem Description

Some strange code is sent to Da Shan High School. It’s said to be the prophet’s note. The note is extremely hard to understand. However, Professor Meng is so smart that he successfully found the pattern of the code. That is, the length of the code is the product of two prime numbers. He tries to reallocate the code into a grid of size N*M, where M is the bigger prime. In specific, he writes down the letters of the code to the cells one by one, from left to right, and from top to button. In this way, he found the code eventually readable.

Professor Meng wants to know all the secrets of the note right now. But he doesn’t take his computer with him. Can you help him?

Input

The first line of the input is L (L ≤ 1000), which means the number of test cases.

For each test case, the first line contains two prime numbers, which indicates N, M (0 < N * M ≤ 1000) as describe above. The second line contains a string, i.e., the code, containing only lowercase letters. It’s guaranteed the length of the string equals to N * M.

Output

For each test case, output N lines, each line with M letters representing the readable code after the reallocation.

Sample Input

  1. 1
  2. 2 5
  3. klmbbileay

Sample Output

  1. klmbb
  2. ileay

Source

2013 Asia Regional Changchun

  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4. int main()
  5. {
  6. int L;
  7. cin>>L;
  8. while(L--)
  9. {
  10. int m,n;
  11. cin>>n>>m;
  12. string s;
  13. cin>>s;
  14. for(int i=0;i<n*m;i++)
  15. {
  16. cout<<s[i];
  17. if((i+1)%m == 0)
  18. cout<<endl;
  19. }
  20. }
  21. return 0;
  22. }

发表评论

表情:
评论列表 (有 0 条评论,147人围观)

还没有评论,来说两句吧...

相关阅读

    相关 G - Coding Contest HDU - 5988

    看到题意,求最小概率,同时每条边都有限制。那岂不是最大流量最小费用。但是这里的概率是相乘,我们用最大流量最小费用的时候概率是相加。我们可以取log 同时,注意到,求最小概率