답안 #141612

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
141612 2019-08-08T14:27:26 Z abacaba Lightning Conductor (POI11_pio) C++14
27 / 100
339 ms 13988 KB
#include <bits/stdc++.h>
using namespace std;

#define max3(a, b, c) max(a, max(b, c))
#define min3(a, b, c) min(a, min(b, c))
#define mp make_pair
#define f first
#define se second
#define pb push_back
#define ppb pop_back
#define ll long long
#define ull unsigned long long
#define cntbit(x) __builtin_popcount(x)
#define endl '\n'
#define uset unordered_set
#define umap unordered_map
#define pii pair<int, int>
#define ld long double
#define pll pair<long long, long long>

struct point {
	int i, l, r;
};

const int N = 5e5 + 15;
int n, a[N], dp[N];
deque <point> q;

inline double get(int j, int i) {
	return a[i] + sqrt(abs(i - j));
}

void process() {
	q.clear();
	for(int i = 1; i <= n; ++i) {
		++q.front().l;
		while(!q.empty() && q.front().r < q.front().l)
			q.pop_front();
		while(!q.empty() && get(q.back().l, q.back().i) <= get(q.back().l, i))
			q.pop_front();
		if(q.empty())
			q.push_back({i, i, n});
		else {
			int l = q.back().l, r = q.back().r, res = 0;
			while(l <= r) {
				int mid = l + r >> 1;
				if(get(mid, i) > get(mid, q.back().i))
					res = mid, l = mid + 1;
				else
					r = mid - 1;
			}
			if(res) {
				if(res - 1 >= q.back().l)
					q.back().r = res - 1;
				else
					q.pop_back();
				q.push_back({i, res, n});
			}
		}
		dp[i] = max(dp[i], (int)ceil(get(i, q.front().i)) - a[i]);
	}
}


int main() {
	scanf("%d", &n);
	for(int i = 1; i <= n; ++i)
		scanf("%d", &a[i]);
	process();
	reverse(a + 1, a + 1 + n);
	reverse(dp + 1, dp + 1 + n);
	process();
	for(int i = n; i; --i)
		printf("%d\n", dp[i]);
    return 0;
}

Compilation message

pio.cpp: In function 'void process()':
pio.cpp:46:17: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
     int mid = l + r >> 1;
               ~~^~~
pio.cpp: In function 'int main()':
pio.cpp:66:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d", &n);
  ~~~~~^~~~~~~~~~
pio.cpp:68:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d", &a[i]);
   ~~~~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 19 ms 1144 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 31 ms 1912 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 30 ms 1784 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 35 ms 2552 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 107 ms 5464 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 224 ms 10008 KB Output is correct
2 Correct 199 ms 7956 KB Output is correct
3 Incorrect 191 ms 8656 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 331 ms 13988 KB Output is correct
2 Correct 339 ms 11128 KB Output is correct
3 Incorrect 245 ms 12124 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 316 ms 11644 KB Output is correct
2 Correct 294 ms 11128 KB Output is correct
3 Incorrect 207 ms 12144 KB Output isn't correct