답안 #581394

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
581394 2022-06-22T15:04:54 Z Vanilla Pinball (JOI14_pinball) C++17
0 / 100
1 ms 212 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long int64;
const int maxn = 1e5 + 2;
int64 l[maxn], r[maxn], c[maxn], cost[maxn];

int main() {
    int n,m;
    cin >> n >> m;
    for (int i = 0; i < n; i++){
        cin >> l[i] >> r[i] >> c[i] >> cost[i];
    }
    int64 ans = 1e18;
    for (int i = 0; i < n; i++){
        int64 tans = cost[i];
        int64 il = l[i], ir = r[i];
        for (int j = i - 1; j >= 0; j--){
            if (c[j] >= il && c[j] <= ir) {
                if (l[j] < il || r[j] > ir) {
                    tans+=cost[j];
                    il = min(il, l[j]);
                    ir = max(ir, r[j]);
                }
            }
            else {
                tans = 1e18;
                break;
            }
        }
        if (il == 1 && ir == m)
            ans = min(ans, tans);
    }
    cout << (ans == 1e18 ? -1: ans);
}
# 결과 실행 시간 메모리 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 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 -