Submission #783492

# Submission time Handle Problem Language Result Execution time Memory
783492 2023-07-15T01:41:51 Z horiiseun Job Scheduling (CEOI12_jobs) C++17
30 / 100
206 ms 23440 KB
#include <iostream>
#include <vector>
#include <tuple>
#include <queue>
#include <stack>
#include <deque>
#include <set>
#include <map>
#include <cmath>
#include <random>
#include <string>
#include <bitset>
#include <cassert>
#include <climits>
#include <algorithm>
#include <unordered_set>
#include <unordered_map>
using namespace std;
 
#define ll long long
#define f first
#define s second
 
void __print(int x) { cerr << x; }
void __print(long x) { cerr << x; }
void __print(long long x) { cerr << x; }
void __print(unsigned x) { cerr << x; }
void __print(unsigned long x) { cerr << x; }
void __print(unsigned long long x) { cerr << x; }
void __print(float x) { cerr << x; }
void __print(double x) { cerr << x; }
void __print(long double x) { cerr << x; }
void __print(char x) { cerr << '\'' << x << '\''; }
void __print(const char *x) { cerr << '\"' << x << '\"'; }
void __print(const string &x) { cerr << '\"' << x << '\"'; }
void __print(bool x) { cerr << (x ? "true" : "false"); }
 
template<typename A> void __print(const A &x);
template<typename A, typename B> void __print(const pair<A, B> &p);
template<typename... A> void __print(const tuple<A...> &t);
template<typename T> void __print(stack<T> s);
template<typename T> void __print(queue<T> q);
template<typename T, typename... U> void __print(priority_queue<T, U...> q);
 
template<typename A> void __print(const A &x) {
    bool first = true;
    cerr << '{';
    for (const auto &i : x) {
        cerr << (first ? "" : ","), __print(i);
        first = false;
    }
    cerr << '}';
}
 
template<typename A, typename B> void __print(const pair<A, B> &p) {
    cerr << '(';
    __print(p.f);
    cerr << ',';
    __print(p.s);
    cerr << ')';
}
 
template<typename... A> void __print(const tuple<A...> &t) {
    bool first = true;
    cerr << '(';
    apply([&first] (const auto &...args) { ((cerr << (first ? "" : ","), __print(args), first = false), ...); }, t);
    cerr << ')';
}
 
template<typename T> void __print(stack<T> s) {
    vector<T> debugVector;
    while (!s.empty()) {
        T t = s.top();
        debugVector.push_back(t);
        s.pop();
    }
    reverse(debugVector.begin(), debugVector.end());
    __print(debugVector);
}
 
template<typename T> void __print(queue<T> q) {
    vector<T> debugVector;
    while (!q.empty()) {
        T t = q.front();
        debugVector.push_back(t);
        q.pop();
    }
    __print(debugVector);
}
 
template<typename T, typename... U> void __print(priority_queue<T, U...> q) {
    vector<T> debugVector;
    while (!q.empty()) {
        T t = q.top();
        debugVector.push_back(t);
        q.pop();
    }
    __print(debugVector);
}
 
void _print() { cerr << "]\n"; }
 
template <typename Head, typename... Tail> void _print(const Head &H, const Tail &...T) {
    __print(H);
    if (sizeof...(T)) cerr << ", ";
    _print(T...);
}
 
#ifdef DEBUG
	#define D(...) cerr << "Line: " << __LINE__ << " [" << #__VA_ARGS__ << "] = ["; _print(__VA_ARGS__)
#else
    #define D(...)
#endif

int n, d, m, l, r, md;
vector<pair<int, int>> jobs;
vector<vector<int>> ans;

bool valid(int x) {
    vector<int> tmp;
    int idx = 0;
    for (int i = 1; i <= n; i++) {
        while (idx < m && jobs[idx].f <= i && tmp.size() < x) {
            if (jobs[idx].f + d < i) {
                return false;
            }
            tmp.push_back(jobs[idx].s);
            idx++;
        }
        if (tmp.size() == x) {
            ans.push_back(tmp);
            tmp.clear();
        }
    }
    if (tmp.size()) {
        ans.push_back(tmp);
        tmp.clear();
    }
    while (ans.size() < n) {
        ans.push_back(tmp);
    }
    return true;
}

int main() {

    ios_base::sync_with_stdio(false);
    cin.tie(0);

    cin >> n >> d >> m;
    for (int i = 1, x; i <= m; i++) {
        cin >> x;
        jobs.push_back({x, i});
    }
    sort(jobs.begin(), jobs.end());

    l = 0, r = 1e6 + 5;
    while (l + 1 != r) {
        md = (l + r) / 2;
        ans.clear();
        if (valid(md)) r = md;
        else l = md;
    }

    cout << r << "\n";

    for (vector<int> v : ans) {
        for (int i : v) {
            cout << i << " ";
        }
        cout << 0 << "\n";
    }

}

Compilation message

jobs.cpp: In function 'bool valid(int)':
jobs.cpp:123:58: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
  123 |         while (idx < m && jobs[idx].f <= i && tmp.size() < x) {
      |                                               ~~~~~~~~~~~^~~
jobs.cpp:130:24: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
  130 |         if (tmp.size() == x) {
      |             ~~~~~~~~~~~^~~~
jobs.cpp:139:23: warning: comparison of integer expressions of different signedness: 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
  139 |     while (ans.size() < n) {
      |            ~~~~~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Incorrect 17 ms 3212 KB Unexpected end of file - int32 expected
2 Incorrect 17 ms 3212 KB Unexpected end of file - int32 expected
3 Incorrect 17 ms 3240 KB Unexpected end of file - int32 expected
4 Incorrect 17 ms 3188 KB Unexpected end of file - int32 expected
5 Incorrect 17 ms 3232 KB Unexpected end of file - int32 expected
6 Incorrect 17 ms 3152 KB Unexpected end of file - int32 expected
7 Incorrect 17 ms 3152 KB Unexpected end of file - int32 expected
8 Incorrect 17 ms 3152 KB Unexpected end of file - int32 expected
9 Correct 35 ms 5948 KB Output is correct
10 Incorrect 29 ms 5784 KB Unexpected end of file - int32 expected
11 Correct 24 ms 2728 KB Output is correct
12 Correct 46 ms 5308 KB Output is correct
13 Incorrect 69 ms 7680 KB Unexpected end of file - int32 expected
14 Correct 97 ms 9936 KB Output is correct
15 Incorrect 112 ms 11580 KB Output isn't correct
16 Incorrect 113 ms 10408 KB Unexpected end of file - int32 expected
17 Correct 171 ms 16048 KB Output is correct
18 Incorrect 182 ms 17844 KB Unexpected end of file - int32 expected
19 Incorrect 206 ms 23440 KB Output isn't correct
20 Correct 171 ms 15916 KB Output is correct