답안 #121759

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
121759 2019-06-27T04:24:33 Z turbat Sails (IOI07_sails) C++14
0 / 100
1000 ms 2680 KB
#include <bits/stdc++.h>
using namespace std;
#define N 100005

int n, mh;
long long  sum, cnt[N], s[N], ans, p, uld, avr;
pair <int, int> mast[N];

void solve (int l){
	if (l > mh) return;
	p = l;
	for (int i = l;i <= mh;i++){
		if((s[i] - s[l - 1]) / (i - l + 1) >= (s[p] - s[l - 1]) / (p - l + 1))
			p = i;
		if ((s[mh] - s[l - 1]) / (i - l + 2) < (s[p] - s[l - 1]) / (p - l + 1))
			break;
	}		
	sum = s[p] - s[l - 1];
	avr = sum / (p - l + 1);
	uld = sum % (p - l + 1);
	ans += uld * avr;
	ans += (p - l + 1) * avr * (avr - 1) / 2;
	solve (p + 1);
}

int main (){
	ios_base::sync_with_stdio(NULL);
	cin.tie(NULL);
	cin >> n;
	for (int i = 0;i < n;i++){
		cin >> mast[i].first>> mast[i].second;
		mh = max(mh, mast[i].first);
		cnt[mast[i].first]++;
		cnt[mast[i].first - mast[i].second]--;
	}
	for (int i = mh;i > 0;i--) cnt[i] += cnt[i + 1];
	for (int i = 1;i <= mh;i++) { 
		s[i] = s[i - 1] + cnt[i];
		// cout << s[i] << endl;
	}
	solve (1);
	cout << ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 384 KB Output is correct
2 Incorrect 2 ms 384 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 384 KB Output is correct
2 Incorrect 2 ms 384 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 10 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 125 ms 932 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1055 ms 1024 KB Time limit exceeded
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1066 ms 1536 KB Time limit exceeded
# 결과 실행 시간 메모리 Grader output
1 Incorrect 194 ms 2560 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1058 ms 2560 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1083 ms 2680 KB Time limit exceeded
2 Halted 0 ms 0 KB -