NC16618 排座椅(贪心)

排座椅

https://ac.nowcoder.com/acm/problem/16618

题目链接

题意:



题解:





AC代码

/*
    Author : zzugzx
    Lang : C++
    Blog : blog.csdn.net/qq_43756519
*/
#include<bits/stdc++.h>
using namespace std;

#define fi first
#define se second
#define pb push_back
#define mp make_pair
#define all(x) (x).begin(), (x).end()
#define endl '\n'
#define SZ(x) (int)x.size()
#define mem(a, b) memset(a, b, sizeof(a))

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int mod = 1e9 + 7;
//const int mod = 998244353;

const double eps = 1e-6;
const double pi = acos(-1.0);
const int maxn = 1e6 + 10;
const int N = 3e3 + 5;
const ll inf = 0x3f3f3f3f;
const int dir[][2]={{0, 1}, {1, 0}, {0, -1}, {-1, 0}, {1, 1}, {1, -1}, {-1, 1}, {-1, -1}};
int xx[maxn], yy[maxn], id[maxn];
bool cmp1(int i, int j) {
    return xx[i] > xx[j];
}
bool cmp2(int i, int j) {
    return yy[i] > yy[j];
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
//  freopen("in.txt", "r", stdin);
//  freopen("out.txt", "w", stdout);
    int n, m, k, l, _;
    cin >> n >> m >> k >> l >> _;
    while (_--) {
        int x, y, x1, y1;
        cin >> x >> y >> x1 >> y1;
        if (y == y1)
            xx[min(x, x1)]++;
        else
            yy[min(y, y1)]++;
    }
    for (int i = 1; i <= n; i++) id[i] = i;
    sort(id + 1, id + 1 + n, cmp1);
    vector<int> ans;
    for (int i = 1; i <= k; i++)
        ans.pb(id[i]);
    sort(all(ans));
    for (int i = 0; i < ans.size(); i++)
        cout << ans[i] << " \n"[i == ans.size() - 1];

    for (int i = 1; i <= m; i++) id[i] = i;
    sort(id + 1, id + 1 + m, cmp2);
    ans.clear();
    for (int i = 1; i <= l; i++)
        ans.pb(id[i]);
    sort(all(ans));
    for (int i = 0; i < ans.size(); i++)
        cout << ans[i] << " \n"[i == ans.size() - 1];
    return 0;
}
每日一题 文章被收录于专栏

每日一题

全部评论

相关推荐

牛客41406533...:回答他在课上学,一辈子待在学校的老教授用三十年前的祖传PPT一字一句的讲解,使用谭浩强红皮书作为教材在devc++里面敲出a+++++a的瞬间爆出114514个编译错误来学这样才显得专业
点赞 评论 收藏
分享
11-17 11:15
门头沟学院 Java
金山办公终于发offer了,但薪资和平台都不如已有的offer打算拒了,A不了薪资,不满意直接拒了,留给需要的人嘿嘿嘿时间线:10.14线下一面&nbsp;,10.23线上二面,下午发测评,11月1日HR面,11月14日电话谈薪,11月17日直接发offer
star__plat...:好兄弟干的好啊,解气。金山第一次笔难度高的离谱,第二次简单的离谱全A了,用人部门筛选中估计最后还是要挂我,就这今早智联招聘还给我发信息让我投
offer帮选
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务