• 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. }
  • 相关阅读:
    【C++】从零开始的CS:GO逆向分析3——写出一个透视
    上半年营收32.48亿元,这家上市公司拟投资20亿在东莞建智能家居和智慧安防产品制造项目
    六、kotlin的函数式编程
    微信小程序登录后端
    Android 性能优化(六):启动优化的详细流程
    hadoop-2.6.4集群编译搭建-阿里云和腾讯云
    以太坊 CALL 数据解析【ETH】
    Vite和Vue3:Vite是一种新的开发服务器和构建工具,它利用了现代浏览器支持的原生ES模块导入,为开发者提供了极速的冷启动和即时热更新
    k8s安装,linux-ubuntu上面kubernetes详细安装过程
    C# 第二章『基础语法』◆第2节:switch case语句
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/127424706