• 1109 Group Photo


    Formation is very important when taking a group photo. Given the rules of forming K rows with N people as the following:

    • The number of people in each row must be N/K (round down to the nearest integer), with all the extra people (if any) standing in the last row;

    • All the people in the rear row must be no shorter than anyone standing in the front rows;

    • In each row, the tallest one stands at the central position (which is defined to be the position (m/2+1), where m is the total number of people in that row, and the division result must be rounded down to the nearest integer);

    • In each row, other people must enter the row in non-increasing order of their heights, alternately taking their positions first to the right and then to the left of the tallest one (For example, given five people with their heights 190, 188, 186, 175, and 170, the final formation would be 175, 188, 190, 186, and 170. Here we assume that you are facing the group so your left-hand side is the right-hand side of the one at the central position.);

    • When there are many people having the same height, they must be ordered in alphabetical (increasing) order of their names, and it is guaranteed that there is no duplication of names.

    Now given the information of a group of people, you are supposed to write a program to output their formation.

    Input Specification:

    Each input file contains one test case. For each test case, the first line contains two positive integers N (≤104), the total number of people, and K (≤10), the total number of rows. Then N lines follow, each gives the name of a person (no more than 8 English letters without space) and his/her height (an integer in [30, 300]).

    Output Specification:

    For each case, print the formation -- that is, print the names of people in K lines. The names must be separated by exactly one space, but there must be no extra space at the end of each line. Note: since you are facing the group, people in the rear rows must be printed above the people in the front rows.

    Sample Input:

    1. 10 3
    2. Tom 188
    3. Mike 170
    4. Eva 168
    5. Tim 160
    6. Joe 190
    7. Ann 168
    8. Bob 175
    9. Nick 186
    10. Amy 160
    11. John 159

    Sample Output:

    1. Bob Tom Joe Nick
    2. Ann Mike Eva
    3. Tim Amy John
    1. #include
    2. #include
    3. #include
    4. using namespace std;
    5. int n, k, mid, last, e, l, r, cnt;
    6. string t[10010];
    7. struct Peo {
    8. string name;
    9. int h;
    10. } a[10010];
    11. bool cmp(Peo p1, Peo p2) {
    12. return p1.h == p2.h ? p1.name < p2.name : p1.h > p2.h;
    13. }
    14. int main() {
    15. cin >> n >> k;
    16. e = n / k;
    17. last = n - e * k + e;
    18. for (int i = 0; i < n; i++) {
    19. cin >> a[i].name >> a[i].h;
    20. }
    21. sort(a, a + n, cmp);
    22. mid = last / 2 + 1;
    23. t[mid] = a[cnt++].name;
    24. l = mid - 1, r = mid + 1;
    25. while (l >= 1 || r <= last) {
    26. if (l >= 1) {
    27. t[l--] = a[cnt++].name;
    28. }
    29. if (r <= last) {
    30. t[r++] = a[cnt++].name;
    31. }
    32. }
    33. for (int i = 1; i <= last; i++) {
    34. cout << t[i];
    35. if (i != last) {
    36. cout << ' ';
    37. }
    38. }
    39. if (k > 1) {
    40. cout << endl;
    41. }
    42. mid = e / 2 + 1;
    43. for (int i = 2; i <= k; i++) {
    44. t[mid] = a[cnt++].name;
    45. l = mid - 1, r = mid + 1;
    46. while (l >= 1 || r <= e) {
    47. if (l >= 1) {
    48. t[l--] = a[cnt++].name;
    49. }
    50. if (r <= e) {
    51. t[r++] = a[cnt++].name;
    52. }
    53. }
    54. for (int j = 1; j <= e; j++) {
    55. cout << t[j];
    56. if (j != e) {
    57. cout << ' ';
    58. }
    59. }
    60. if (i != k) {
    61. cout << endl;
    62. }
    63. }
    64. return 0;
    65. }
  • 相关阅读:
    Azure OpenAI 服务
    FFmpeg封装函数avformat_open_input()
    Java Double isNaN()方法具有什么功能呢?
    阿里 P8 级别面试官分享出源码阅读技巧附 Java 源码和大厂真题
    gitlab对/api/v4/可泄露敏感信息处理
    关于建立开放的学术论文共享平台的倡议
    39-Docker-部署Jenkins
    3年软件测试经验,不懂自动化基础...不知道我这种测试人员是不是要被淘汰了?​​
    C/C++程序设计题目汇总(2022)
    10月22日,每日信息差
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/127424706