답안 #603066

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
603066 2022-07-23T14:42:58 Z cheissmart Shortcut (IOI16_shortcut) C++14
0 / 100
1 ms 312 KB
// 花啊啊啊啊啊啊啊啊啊啊啊啊
#include "shortcut.h"
#pragma GCC optimize("O3", "no-stack-protector")
#include <bits/stdc++.h>
#define IO_OP std::ios::sync_with_stdio(0); std::cin.tie(0);
#define F first
#define S second
#define V vector
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(), (v).end()
 
using namespace std;
 
typedef long long ll;
typedef pair<int, int> pi;
typedef V<int> vi;
 
const int INF = 1e9 + 7, N = 1e6 + 7;
const ll oo = 1e18;
 
void cmax(ll& a, ll b) {
    a = max(a, b);
}
void cmin(ll& a, ll b) {
    a = min(a, b);
}
 
ll a[N], b[N], pos[N];
 
ll find_shortcut(int n, vi l, vi d, int c) {
    assert(SZ(l) == n - 1);
    assert(SZ(d) == n);
    for(int i = 1; i < n; i++)
        pos[i] = l[i - 1] + pos[i - 1];
 
    for(int i = 0; i < n; i++)
        a[i] = pos[i] + d[i];
    for(int i = 0; i < n; i++)
        b[i] = pos[i] - d[i];
 
    vi p;
    for(int i = 0; i < n; i++) {
        while(SZ(p) && b[p.back()] > b[i]) p.pop_back();
        if(p.empty() || a[p.back()] < a[i]) p.PB(i);
    }
 
    auto ok = [&] (ll k) {
        ll lb_sum = -oo, rb_sum = oo;
        ll lb_dif = -oo, rb_dif = oo;
        /* 
            for each (i < j) a[j] > b[i] + k, max a[j], min b[j]
            b[i] > b[j] => a[i] < a[j]
            a[i] > a[j] => b[i] < b[j]
 
            a[x] > a[y] => y is useless
            b[x] > b[y] => x is useless
 
            
 
        */
        for(int i:p) for(int j:p) if(j != i) {
            cmax(lb_sum, a[i] + a[j] + c - k);
            cmin(rb_sum, b[i] + b[j] + k - c);
            cmax(lb_dif, a[i] - b[j] - k + c);
            cmin(rb_dif, b[i] - a[j] + k - c);
        }
        if(lb_sum > rb_sum) return false;
        if(lb_dif > rb_dif) return false;
        for(int i = 0; i < n - 1; i++) {
            ll lb = max(lb_sum - pos[i], pos[i] - rb_dif), rb = min(rb_sum - pos[i], pos[i] - lb_dif);
            if(lb <= rb) {
                int j = lower_bound(pos + i + 1, pos + n, lb) - pos;
                if(j < n && pos[j] <= rb)
                    return true;
            }
        }
        return false;
    };
 
    ll lb = pos[n - 1] / 3, rb = 1e15;
    while(lb <= rb) {
        ll mb = (lb + rb) / 2;
        if(ok(mb)) rb = mb - 1;
        else lb = mb + 1;
    }
    return lb;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 312 KB n = 4, incorrect answer: jury 80 vs contestant 130
2 Halted 0 ms 0 KB -