답안 #743273

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
743273 2023-05-17T09:20:20 Z vjudge1 쌀 창고 (IOI11_ricehub) C++17
0 / 100
1000 ms 668 KB
#include<bits/stdc++.h>
#include "ricehub.h"
using namespace std;
int besthub(int R, int L, int X[], long long B)
{
    long long mx = -1;
    for(int i=0;i<R;++i)
    {
        int pos = X[i];
        priority_queue<int,vector<int>,greater<int>> pq;
        for(int j=0;j<R;++j)
        {
            int dist = abs(pos-X[j]);
            pq.push(dist);
        }
        long long cost = 0,rice = 0;
        while(!pq.empty() && cost < B)
        {
            cost += pq.top();
            ++rice;
            pq.pop();
        }
        mx = max(mx,rice);
    }
    return mx;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1062 ms 668 KB Time limit exceeded
2 Halted 0 ms 0 KB -