답안 #505856

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
505856 2022-01-11T09:00:58 Z Carmel_Ab1 King of Chairs (FXCUP4_chairs) C++17
0 / 100
75 ms 11952 KB
#include "king.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;

ll SendInfo(vi W, vi C) {
    multiset<int>s;
    int n=C.size();
    for(int i=0; i<n; i++)
        s.insert(C[i]);

    int ans=0;
    for(int i=0; i<n; i++){
        auto it=s.lower_bound(W[i]);
        if(it==s.end())break;
        s.erase(it);
        ans++;
    }
    return ans;
}
#include "vassal.h"


#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int>pi;
int pref=0;
multiset<pi>s;

void Init(ll B, vi C){
    pref=B;
    int n=C.size();
    for(int i=0; i<n; i++)
        s.insert({C[i],i});
}

int Maid(int W){
    if(!pref)return -1;
    --pref;
    auto it=--s.upper_bound({W,1e9});
    int ans=it->second;
    s.erase(it);
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 560 KB Correct
2 Runtime error 0 ms 488 KB Execution failed because the return code was nonzero
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 59 ms 11952 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 75 ms 9136 KB Execution failed because the return code was nonzero
2 Halted 0 ms 0 KB -