답안 #68982

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
68982 2018-08-19T11:54:04 Z Kubalionzzale Roller Coaster Railroad (IOI16_railroad) C++14
0 / 100
379 ms 17732 KB
#include "railroad.h"

#include <iostream>
#include <algorithm>
#include <functional>
#include <set>
#include <map>

int n;
std::pair<int, int> a[200010];
std::map< std::pair<int, int>, int, std::greater< std::pair<int, int> > > mapa;
//first - output speed, second - index

bool compare(const std::pair<int, int> &lhs, const std::pair<int, int> &rhs)
{
    if (lhs.first != rhs.first)
        return lhs.second < rhs.second;
    else
        return lhs.first < rhs.first;
}

long long plan_roller_coaster(std::vector<int> s, std::vector<int> t) {
    n = (int) s.size();

    for (int i = 0; i < n; ++i)
    {
        a[i].first = s[i];
        a[i].second = t[i];

        mapa.insert(std::make_pair(std::make_pair(t[i], i), 0));
    }

    mapa.insert(std::make_pair(std::make_pair(1, -1), 0));

    int cnt = 1;
    for (auto it = mapa.begin(); it != mapa.end(); ++it)
    {
        it->second = cnt;
        ++cnt;
    }

    std::sort(a, a + n, compare);
    for (int i = 0; i < n; ++i)
    {
        auto it = mapa.lower_bound(std::make_pair(s[i], 1e9 + 5));

        if (it->second <= (n - i))
            return 1;

    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB answer is not correct: 1 instead of 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB answer is not correct: 1 instead of 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 379 ms 17732 KB answer is not correct: 1 instead of 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 248 KB answer is not correct: 1 instead of 0
2 Halted 0 ms 0 KB -