| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 | 
|---|---|---|---|---|---|---|---|
| 464817 | Alen777 | Fountain (eJOI20_fountain) | C++14 | 1176 ms | 524292 KiB | 
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <string>
#include <iomanip>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <cmath>
#include <algorithm>
#include <cstring>
using namespace std;
#define ll long long
#define ull unsigned ll
#define pb push_back
#define mpr make_pair
#define lb lower_bound
#define ld long double
#define ub upper_bound
const int N = 100005;
int c[N], d[N];
vector<pair<int, int> > cnt[N];
void solve() {
    int n, q;
    cin >> n >> q;
    for (int i = 0; i < n; i++) {
        cin >> d[i] >> c[i];
    }
    for (int i = 0; i < n; i++) {
        cnt[i].push_back(mpr(c[i], i));
        int ind = i;
        long long tar = c[i];
        for (int j = i + 1; j < n; j++) {
            if (d[j] > d[ind]) {
                tar += c[j];
                ind = j;
                cnt[i].push_back(mpr(tar, ind));
            }
        }
    }
    while (q--) {
        int ind, tar;
        cin >> ind >> tar;
        ind--;
        int ind0 = lower_bound(cnt[ind].begin(), cnt[ind].end(), mpr(tar, 0)) - cnt[ind].begin();
        if (ind0 == cnt[ind].size()) {
            cout << 0 << endl;
            continue;
        }
        cout << cnt[ind][ind0].second + 1 << endl;
    }
}
int main() {
    /*cout.setf(ios::fixed | ios::showpoint);
    cout.precision(6);*/
    ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
    solve();
    return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
