답안 #367040

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
367040 2021-02-16T06:01:17 Z dennisstar Shortcut (IOI16_shortcut) C++17
0 / 100
1 ms 364 KB
#include "shortcut.h"
#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const ll INF = 1e18;

int n, c;
vector<int> L, R;
vector<ll> P, D;

int cccc;
void count() {
	cccc++;
	if (cccc>n*100) assert(false);
}

bool f(ll m) {
	ll l=-INF, r=INF, d=-INF, u=INF, m1=INF, m2=INF;
	for (int t=0, k=0; t<n; t++) {
		int i=L[t];
		while (k<n) {
			count();
			int j=R[k];
			if (P[j]-P[i]+D[i]+D[j]<=m) break;
			ll im=P[j]-D[j];
			if (m1>im) m2=m1, m1=im;
			else if (m2>im) m2=im;
			k++;
		}
		int j=(i==R[0]?R[1]:R[0]);
		if (P[j]-P[i]+D[i]+D[j]<=m) continue;
		ll w=m-c-D[i]-D[j];
		ll x=P[i], y=P[j];
		l=max(l, x+y-w);
		d=max(d, -x+y-w);
		w=m-c-D[i]+(m1==P[i]-D[i]?m2:m1);
		r=min(r, x+w);
		u=min(u, -x+w);
	}
	for (int i=1, j=1; i<=n; i++) {
		ll s=max(l-P[i], d+P[i]);
		ll e=min(r-P[i], u+P[i]);
		if (s>e) continue;
		while (P[j]<s) j++, count();
		while (P[j]>e) j--, count();
		if (s<=P[j]&&P[j]<=e) return true;
	}
	return false;
}

ll find_shortcut(int n, vector<int> l, vector<int> d, int c) {
	::n=n;
	::c=c;
	P={-INF, 0};
	for (auto &i:l) P.emplace_back(P.back()+i);
	P.emplace_back(INF);
	for (auto &i:P) printf("%lld ", i);puts("");
	D={0};
	for (auto &i:d) D.emplace_back(i);

	for (int i=1; i<=n; i++)
		L.emplace_back(i),
		R.emplace_back(i);
	sort(L.begin(), L.end(), [&](int x, int y) { return P[x]-D[x]>P[y]-D[y]; });
	sort(R.begin(), R.end(), [&](int x, int y) { return P[x]+D[x]>P[y]+D[y]; });
	
	sort(d.rbegin(), d.rend());
	ll s=d[0]+d[1], e=INF;
	while (s<e) {
		ll m=(s+e)/2;
		if (f(m)) e=m;
		else s=m+1;
		cccc=0;
	}

	return s;
}

Compilation message

shortcut.cpp: In function 'll find_shortcut(int, std::vector<int>, std::vector<int>, int)':
shortcut.cpp:59:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   59 |  for (auto &i:P) printf("%lld ", i);puts("");
      |  ^~~
shortcut.cpp:59:37: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   59 |  for (auto &i:P) printf("%lld ", i);puts("");
      |                                     ^~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB Secret is incorrect!
2 Halted 0 ms 0 KB -