結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー RhoRho
提出日時 2020-04-17 00:01:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 517 ms / 3,500 ms
コード長 1,748 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 180,172 KB
実行使用メモリ 18,308 KB
最終ジャッジ日時 2024-10-03 04:29:59
合計ジャッジ時間 16,561 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 6 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 6 ms
5,248 KB
testcase_07 AC 6 ms
5,248 KB
testcase_08 AC 7 ms
5,248 KB
testcase_09 AC 6 ms
5,248 KB
testcase_10 AC 6 ms
5,248 KB
testcase_11 AC 242 ms
15,384 KB
testcase_12 AC 242 ms
15,304 KB
testcase_13 AC 313 ms
17,620 KB
testcase_14 AC 258 ms
15,844 KB
testcase_15 AC 304 ms
16,812 KB
testcase_16 AC 241 ms
15,164 KB
testcase_17 AC 302 ms
16,816 KB
testcase_18 AC 274 ms
16,440 KB
testcase_19 AC 290 ms
16,968 KB
testcase_20 AC 312 ms
17,760 KB
testcase_21 AC 274 ms
16,472 KB
testcase_22 AC 241 ms
15,072 KB
testcase_23 AC 248 ms
15,484 KB
testcase_24 AC 301 ms
17,028 KB
testcase_25 AC 308 ms
17,664 KB
testcase_26 AC 283 ms
16,612 KB
testcase_27 AC 256 ms
15,780 KB
testcase_28 AC 311 ms
17,668 KB
testcase_29 AC 313 ms
17,792 KB
testcase_30 AC 313 ms
17,672 KB
testcase_31 AC 309 ms
17,796 KB
testcase_32 AC 312 ms
17,668 KB
testcase_33 AC 310 ms
17,796 KB
testcase_34 AC 470 ms
18,192 KB
testcase_35 AC 335 ms
18,184 KB
testcase_36 AC 301 ms
18,172 KB
testcase_37 AC 328 ms
18,308 KB
testcase_38 AC 297 ms
18,028 KB
testcase_39 AC 282 ms
17,736 KB
testcase_40 AC 290 ms
18,048 KB
testcase_41 AC 306 ms
17,996 KB
testcase_42 AC 316 ms
17,948 KB
testcase_43 AC 256 ms
18,064 KB
testcase_44 AC 251 ms
17,932 KB
testcase_45 AC 242 ms
17,632 KB
testcase_46 AC 330 ms
17,440 KB
testcase_47 AC 343 ms
17,192 KB
testcase_48 AC 347 ms
17,588 KB
testcase_49 AC 336 ms
17,564 KB
testcase_50 AC 336 ms
17,488 KB
testcase_51 AC 474 ms
17,336 KB
testcase_52 AC 517 ms
17,460 KB
testcase_53 AC 472 ms
17,336 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma warning(disable:4996)
#include"bits/stdc++.h"
using namespace std;
#define int long long
#define rep(i,n) for(int i=0;i<n;i++)
#define RE assert(0);
const long long inf = 1e17;
typedef pair<int, int> P;
int p[100006];
vector<P>seg[400];
int segmax[400];
int n, k, sqrtN;
void maekei() {
	rep(i, k) {
		for (int j = i*sqrtN; j < min((i + 1)*sqrtN, n); j++) {
			segmax[i] = max(segmax[i], p[j]);
			int cnt = 0, mn = p[j];
			for (int l = i*sqrtN; l < min((i + 1)*sqrtN, n); l++) {
				if (mn <= p[l]) {
					cnt++;
					mn = p[l];
				}
			}
			seg[i].push_back(P(p[j], cnt));
		}
		sort(seg[i].begin(), seg[i].end());
	}
}
int calseg(int l, int r) {
	int mx = p[l];
	int ans = 0;
	rep(i, k) {
		int L = i*sqrtN, R = (i + 1)*sqrtN;
		if (R <= l || r <= L)continue;
		if (l <= L&&R <= r) {
			auto p = lower_bound(seg[i].begin(), seg[i].end(), P(mx, inf));
			if (p != seg[i].end()) {
				ans += (*p).second;
				mx = segmax[i];
			}
		}
		else {
			for (int j = max(L, l); j < min(R, r); j++) {
				if (mx < p[j]) {
					ans++;
					mx = p[j];
				}
			}
		}
	}
	return ans;
}
int divseg() {
	int res = 0;
	maekei();
	vector<P>V;
	rep(i, n)V.push_back(P(p[i], i));
	sort(V.begin(), V.end());
	set<int>S;
	S.insert(n);
	rep(i, n) {
		int r = *S.lower_bound(V[i].second);
		res += calseg(V[i].second, r);
		S.insert(V[i].second);
	}
	return res;
}

signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	cin >> n;
	sqrtN = sqrt(n);
	k = (n + sqrtN - 1) / sqrtN;
	if (1 > n || n > 100000)RE;
	set<int>S;
	rep(i, n) {
		cin >> p[i];
		if (p[i]<1 || p[i]>n)RE;
		S.insert(p[i]);
	}
	if (S.size() != n)RE;
	int res = divseg();
	reverse(p, p + n);
	rep(i, 400) {
		seg[i].clear();
		segmax[i] = 0;
	}
	res += divseg();
	cout << res << endl;
}
0