답안 #591800

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
591800 2022-07-08T00:01:04 Z FatihSolak Shortcut (IOI16_shortcut) C++17
0 / 100
1 ms 340 KB
#include "shortcut.h"
#include <bits/stdc++.h>
#define N 1000005
using namespace std;
long long p[N];
long long d[N];
int n,nwedge;
vector<pair<long long,int>> a;
vector<pair<long long,int>> b;
long long val1[N],val2[N];
bool ck(long long k){
    for(int i = 0;i<n;i++){
        val1[i] = -1e18;
        val2[i] = 1e18;
    }
    int pt = n;
    for(int i = 0;i<n;i++){
        while(pt && b[pt-1].first + a[i].first > k){
            pt--;
        }
        //cout << i << " " << a[i].second << " " << a[i].first << " " <<  pt << " " << b[pt].first << " "  << k << endl;
        if(pt != n){
            val1[b[pt].second] = max(val1[b[pt].second],p[a[i].second] + d[a[i].second]);
            val2[b[pt].second] = min(val2[b[pt].second],p[a[i].second] - d[a[i].second]);
        }
    }
    long long xl = -1e18, xr = 1e18;
    long long yl = -1e18, yr = 1e18;

    stack<int> st;
    for(int i = 0;i<n;i++){
        while(st.size() && p[st.top()] + d[st.top()] <= p[i] + d[i]){
            val1[i] = max(val1[i],val1[st.top()]);
            val2[i] = min(val2[i],val2[st.top()]);
            st.pop();
        }
        xl = max(xl,+ p[i]  - (k - d[i] - nwedge) + val1[i]);
        xr = min(xr,+ p[i]  + (k - d[i] - nwedge) + val2[i]);
        yl = max(yl,- p[i]  - (k - d[i] - nwedge) + val1[i]);
        yr = min(yr,- p[i]  + (k - d[i] - nwedge) + val2[i]);
        st.push(i);
        /*
        for(int j = i+1;j<n;j++){
            if(-p[i]  + d[i] + p[j] + d[j] > k){
                xl = max(xl,p[i] + p[j]  - (k - d[i] - d[j] - nwedge));
                xr = min(xr,p[i] + p[j]  + (k - d[i] - d[j] - nwedge));
                yl = max(yl,p[i] - p[j]  - (k - d[i] - d[j] - nwedge));
                yr = min(yr,p[i] - p[j]  + (k - d[i] - d[j] - nwedge));
            }
        }*/
    }
    // cout << k << endl;
    // for(int i = 0;i<n;i++){
    //     cout << p[i] << " ";
    // }
    // cout << endl;
    // cout << xl << " " << xr << " " << yl << " " << yr << endl;
    if(xl > xr || yl > yr)return 0;
    int pt1 = n,pt2 = n-1;
    int pt3 = -1,pt4 = 0;
    for(int i = 0;i<n;i++){
        while(pt1 && p[pt1-1] + p[i] >= xl){
            pt1--;
        }
        while(pt2 &&  p[pt2] + p[i] > xr){
            pt2--;
        }

        while(pt3 + 1 != n && -p[pt3+1] + p[i] >= yl){
            pt3++;
        }
        while(pt4 != n &&  -p[pt4] + p[i] > yr){
            pt4++;
        }

        int l1 = pt1,r1 = pt2;
        int l2 = pt4,r2 = pt3;

        if(r1 < l1 || r2 < l2)continue;
        if(r1 < l2 || r2 < l1)continue;
        
        return 1;
    }
    return 0;
}
long long find_shortcut(int n_, vector<int> l_, vector<int> d_, int nwedge_)
{
    n = n_;
    nwedge = nwedge_;
    for(int i = 1;i<n;i++){
        p[i] = p[i-1] + l_[i-1];
    }
    for(int i = 0;i<n;i++){
        d[i] = d_[i];
    }
    for(int i = 0;i<n;i++){
        a.push_back({-p[i] + d[i],i});
    }
    for(int i = 0;i<n;i++){
        b.push_back({p[i] + d[i],i});
    }
    sort(a.begin(),a.end());
    sort(b.begin(),b.end());

    for(int i = b.size()-2;i>=0;i--){
        b[i].second = min(b[i].second,b[i+1].second);
    }
    long long l = 0, r = 1e18;
    while(l < r){
        long long m = (l + r)/2;
        if(ck(m)){
            r = m;
        }
        else l = m+1;
    }
    return l;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 320 KB n = 4, 80 is a correct answer
2 Correct 0 ms 212 KB n = 9, 110 is a correct answer
3 Correct 0 ms 340 KB n = 4, 21 is a correct answer
4 Correct 0 ms 212 KB n = 3, 4 is a correct answer
5 Incorrect 1 ms 340 KB n = 2, incorrect answer: jury 62 vs contestant 72
6 Halted 0 ms 0 KB -