【每日一题】8月17日[SCOI2009]生日礼物,简单排序+暴力

[SCOI2009]生日礼物

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

题目意思


解决方案







#pragma GCC target("avx,sse2,sse3,sse4,popcnt")
#pragma GCC optimize("O2,O3,Ofast,inline,unroll-all-loops,-ffast-math")
#include <bits/stdc++.h>
using namespace std;
#define js ios::sync_with_stdio(false);cin.tie(0); cout.tie(0)
#define all(__vv__) (__vv__).begin(), (__vv__).end()
#define endl "\n"
#define pai pair<int, int>
#define ms(__x__,__val__) memset(__x__, __val__, sizeof(__x__))
typedef long long ll; typedef unsigned long long ull; typedef long double ld;
inline ll read() { ll s = 0, w = 1; char ch = getchar(); for (; !isdigit(ch); ch = getchar()) if (ch == '-') w = -1; for (; isdigit(ch); ch = getchar())    s = (s << 1) + (s << 3) + (ch ^ 48); return s * w; }
inline void print(ll x, int op = 10) { if (!x) { putchar('0'); if (op)    putchar(op); return; }    char F[40]; ll tmp = x > 0 ? x : -x;    if (x < 0)putchar('-');    int cnt = 0;    while (tmp > 0) { F[cnt++] = tmp % 10 + '0';        tmp /= 10; }    while (cnt > 0)putchar(F[--cnt]);    if (op)    putchar(op); }
inline ll gcd(ll x, ll y) { return y ? gcd(y, x % y) : x; }
ll qpow(ll a, ll b) { ll ans = 1;    while (b) { if (b & 1)    ans *= a;        b >>= 1;        a *= a; }    return ans; }    ll qpow(ll a, ll b, ll mod) { ll ans = 1; while (b) { if (b & 1)(ans *= a) %= mod; b >>= 1; (a *= a) %= mod; }return ans % mod; }
inline int lowbit(int x) { return x & (-x); }
const int dir[][2] = { {0,1},{1,0},{0,-1},{-1,0},{1,1},{1,-1},{-1,1},{-1,-1} };
const int MOD = 1e9 + 7;
const int INF = 0x3f3f3f3f;

const int N = 1e6 + 7;
int n, k, vis[65];
vector<pai> p;

bool check() {
    for (int i = 1; i <= k; ++i)
        if (vis[i] == 0)    return false;
    return true;
}

int main() {
    n = read(), k = read();
    for (int i = 1; i <= k; ++i) {
        int m = read();
        while (m--) {
            int x = read();
            p.emplace_back(x, i);
        }
    }
    sort(all(p));
    int ans = INT_MAX;
    for (int l = 0, r = 0; r < n; ++r) {
        ++vis[p[r].second];
        while (check()) {
            ans = min(ans, p[r].first - p[l].first);
            --vis[p[l].second];
            ++l;
        }
    }
    print(ans);
    return 0;
}
每日一题 文章被收录于专栏

每日一题

全部评论
不用每次都扫一遍的,右指针移动的时候维护一个cnt就好了。左指针右移的时候出去的东西不会使得l到r里面的颜色减少
点赞 回复 分享
发布于 2020-08-17 11:45

相关推荐

11-11 22:08
佛山大学 Java
点赞 评论 收藏
分享
代码飞升:别这样贬低自己,降低预期,放平心态,跟昨天的自己比。做好自己,反而会效率更高心态更好,加油兄弟
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

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