제출 #602868

#제출 시각아이디문제언어결과실행 시간메모리
602868JoshcHiring (IOI09_hiring)C++11
60 / 100
388 ms29548 KiB
#include <cstdio>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;

#define EPS 0.0000001

struct worker {
    int id;
    long long s, q;
};

struct comp {
    bool operator() (worker& a, worker& b) {
        return a.s*b.q < b.s*a.q;
    }
};

struct comp2 {
    bool operator() (worker& a, worker& b) {
        return a.q < b.q;
    }
};

int n, total=0, index=0, best=0;
long long w, t=0;
long double cost = 100000000000000000;

vector<worker> v;
priority_queue<worker, vector<worker>, comp2> pq;

void round(int num) {
    t += v[num-1].q;
    pq.push(v[num-1]);
    while (!pq.empty() && t*v[num-1].s > w*v[num-1].q) {
        t -= pq.top().q;
        pq.pop();
    }
    if (pq.size() > total || (pq.size()==total && (t*pq.top().s)/((double)pq.top().q) < cost+EPS)) {
        total = pq.size();
        cost = (t*pq.top().s)/((long double)pq.top().q);
        best = num;
    }
}

int main() {
    int s, q;
    scanf("%d%lld", &n, &w);
    for (int i=1; i<=n; i++) {
        scanf("%d%d", &s, &q);
        v.push_back({i, s, q});
    }
    sort(v.begin(), v.end(), comp());
    for (int i=1; i<=n; i++) round(i);
    printf("%d\n", total);
    while (!pq.empty()) pq.pop();
    t = 0;
    cost = 100000000000000000;
    for (int i=1; i<=best; i++) round(i);
    vector<int> res;
    while (!pq.empty()) {
        res.push_back(pq.top().id);
        pq.pop();
    }
    sort(res.begin(), res.end());
    for (int i : res) printf("%d\n", i);
}

컴파일 시 표준 에러 (stderr) 메시지

hiring.cpp: In function 'void round(int)':
hiring.cpp:40:19: warning: comparison of integer expressions of different signedness: 'std::priority_queue<worker, std::vector<worker>, comp2>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   40 |     if (pq.size() > total || (pq.size()==total && (t*pq.top().s)/((double)pq.top().q) < cost+EPS)) {
      |         ~~~~~~~~~~^~~~~~~
hiring.cpp:40:40: warning: comparison of integer expressions of different signedness: 'std::priority_queue<worker, std::vector<worker>, comp2>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   40 |     if (pq.size() > total || (pq.size()==total && (t*pq.top().s)/((double)pq.top().q) < cost+EPS)) {
      |                               ~~~~~~~~~^~~~~~~
hiring.cpp: In function 'int main()':
hiring.cpp:49:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   49 |     scanf("%d%lld", &n, &w);
      |     ~~~~~^~~~~~~~~~~~~~~~~~
hiring.cpp:51:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   51 |         scanf("%d%d", &s, &q);
      |         ~~~~~^~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...