1109. Group Photo (25)

测试点可能会有10000人都在一排的情况,但是直接string matrix[10001][10001],又会报段错误,讨巧写了[101][10001]过了,但是感觉正确写法应该要 dynamic allocate。。。

#include<iostream>
#include<string>
#include<map>
#include<vector>
#include<algorithm>
#include<queue>
#include<set>
#include<stack>
using namespace std;

struct stu {
    string name;
    int h;
};

bool cmp(stu s1, stu s2) {
    if (s1.h != s2.h) {
        return s1.h > s2.h;
    }
    else
        return s1.name < s2.name;
}

int main() {

    int num, k;
    cin >> num >> k;
    vector<stu> arr(10001);
    for (int i = 0; i < num; i++) {
        stu temp;
        cin >> temp.name >> temp.h;
        arr.push_back(temp);

    }

    sort(arr.begin(), arr.end(), cmp);

    int m = num / k;

    int lm = m + num%k;

    string matrix[100][100];
    int i = 0;
    for (i; i < lm; i++) {
        if (i % 2 == 1) {
            matrix[k - 1][lm / 2 + 1 - (i / 2 + 1)] = arr[i].name;

        }


        else
            matrix[k - 1][lm / 2 + 1 + (i / 2)] = arr[i].name;

    }

    for (int a = 1; a < k ; a++) {

        for (int b = 0; b < m; b++) {
            if (b % 2 == 1) {
                matrix[k - 1 - a][m / 2 + 1 - (b / 2 + 1)] = arr[i].name;
                i++;
            }

            else {
                matrix[k - 1 - a][m / 2 + 1 + (b / 2)] = arr[i].name;
                i++;
            }
        }

    }

    for (int i = 1; i <= lm; i++) {
        if(i==1)
            cout << matrix[k-1][i];
        else
            cout <<' '<< matrix[k - 1][i];
    }
    cout << endl;
    for (int a = 1; a < k; a++) {
        for (int b = 1; b <= m; b++) {
            if (b == 1)
                cout << matrix[k - 1 - a][b];
            else
                cout <<' '<< matrix[k - 1 - a][b];

        }

        cout << endl;
    }
    
    system("pause");
    
}

 

转载于:https://www.cnblogs.com/wsggb123/p/7272085.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
SELECT bs.report_no, bs.sample_id, bs.test_id, bs.service_type, bs.sample_name, bs.total_fee, bs.receivable_fee, bs.sample_no, bs.ranges, bs.grade, bs.sample_remark AS remark, bs.factory, bs.item_name, bs.apply_dept, bs.specification, bs.factory_number, bs.calibrat_point, bs.mandatory_flag, bs.inspection_type, bs.report_org_name, bs.plan_complete_date, bs.standard_instrument_name, bs.bleeding_site_name, bs.arrive_date, DATEDIFF( bs.plan_complete_date, NOW()) AS surplus_days, bs.order_no, bs.order_type, bs.customer_name, bs.order_id, bs.business_type, bs.group_id, bs.group_name, bs.item_id, bs.is_merge, bs.pass_time, bs.audit_time, bs.report_id, bs.compile_time, bs.generate_time, bs.pass_user_name, bs.audit_user_name, bs.compile_user_name, bs.report_state, bs.is_just_certificate, bs.label_price, bs.labor_cost, bs.product_type, bs.batch_number, bs.original_number, bs.type_no, bs.template_id, bs.template_version, bs.standard_instrument_id, bs.standard_instrument_name, bs.report_query_code, bs.test_user_id, bs.test_user_name, bs.test_time, bs.review_user_id, bs.review_user_name, bs.review_time, bs.or_number, bs.test_result, bs.test_result_text, bs.test_date, bs.test_address, bs.result_value, bs.unit, bs.test_dept_id, bs.test_dept_name, bs.sample_mass, bs.form, bs.color, bs.clarity, bs.amplification_detection, bs.precious_metal, bs.remarks, bs.photo, bs.identifying_code, bs.diamond_quality, bs.hand_ring, bs.craft, bs.instrument_photo, bs.customer_item_basis, bs.quality_photo, bs.check_point, bs.check_code, bs.mass_unit, bs.manufacturer_name, bs.manufacturer_addr, bs.result_sample_describe AS sampleDescribe, bs.test_rule AS metalRuleIdsStr, bsa.attach_id FROM view_sample_info bs JOIN bus_sample_report bsr ON bs.report_id = bsr.id JOIN bus_sample sa ON bsr.sample_id = sa.id JOIN bus_sample_attr bsa ON sa.id = bsa.id 需要按照bs.report_no 的整数来从小到大进行排序
最新发布
07-15

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值