結果

問題 No.1031 いたずら好きなお姉ちゃん
ユーザー heno239heno239
提出日時 2020-04-17 22:18:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 266 ms / 3,500 ms
コード長 5,510 bytes
コンパイル時間 1,345 ms
コンパイル使用メモリ 123,500 KB
実行使用メモリ 32,404 KB
最終ジャッジ日時 2023-07-27 01:08:50
合計ジャッジ時間 13,129 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,752 KB
testcase_01 AC 4 ms
6,804 KB
testcase_02 AC 4 ms
6,912 KB
testcase_03 AC 9 ms
8,004 KB
testcase_04 AC 9 ms
7,832 KB
testcase_05 AC 9 ms
7,744 KB
testcase_06 AC 9 ms
7,856 KB
testcase_07 AC 9 ms
8,000 KB
testcase_08 AC 9 ms
7,772 KB
testcase_09 AC 9 ms
7,760 KB
testcase_10 AC 9 ms
7,768 KB
testcase_11 AC 188 ms
27,704 KB
testcase_12 AC 188 ms
27,584 KB
testcase_13 AC 238 ms
32,188 KB
testcase_14 AC 203 ms
28,560 KB
testcase_15 AC 224 ms
30,756 KB
testcase_16 AC 185 ms
27,224 KB
testcase_17 AC 222 ms
30,676 KB
testcase_18 AC 215 ms
29,932 KB
testcase_19 AC 254 ms
30,872 KB
testcase_20 AC 246 ms
32,188 KB
testcase_21 AC 221 ms
29,880 KB
testcase_22 AC 188 ms
27,176 KB
testcase_23 AC 197 ms
28,120 KB
testcase_24 AC 233 ms
30,988 KB
testcase_25 AC 252 ms
31,972 KB
testcase_26 AC 229 ms
30,140 KB
testcase_27 AC 200 ms
28,648 KB
testcase_28 AC 251 ms
32,336 KB
testcase_29 AC 255 ms
32,208 KB
testcase_30 AC 259 ms
32,300 KB
testcase_31 AC 266 ms
32,268 KB
testcase_32 AC 257 ms
32,340 KB
testcase_33 AC 257 ms
32,112 KB
testcase_34 AC 241 ms
32,256 KB
testcase_35 AC 198 ms
32,144 KB
testcase_36 AC 197 ms
32,200 KB
testcase_37 AC 197 ms
32,284 KB
testcase_38 AC 183 ms
32,072 KB
testcase_39 AC 176 ms
31,208 KB
testcase_40 AC 189 ms
31,744 KB
testcase_41 AC 185 ms
31,736 KB
testcase_42 AC 185 ms
31,740 KB
testcase_43 AC 176 ms
31,840 KB
testcase_44 AC 177 ms
31,784 KB
testcase_45 AC 172 ms
30,892 KB
testcase_46 AC 217 ms
31,724 KB
testcase_47 AC 202 ms
31,412 KB
testcase_48 AC 207 ms
32,404 KB
testcase_49 AC 198 ms
32,176 KB
testcase_50 AC 192 ms
31,816 KB
testcase_51 AC 217 ms
32,108 KB
testcase_52 AC 216 ms
32,348 KB
testcase_53 AC 215 ms
32,336 KB
testcase_54 AC 3 ms
6,840 KB
testcase_55 AC 3 ms
6,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<cstdio>
#include<vector>
#include<cmath>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<queue>
#include<ciso646>
#include<random>
#include<map>
#include<set>
#include<bitset>
#include<stack>
#include<unordered_map>
#include<utility>
#include<cassert>
#include<complex>
#include<numeric>
using namespace std;

//#define int long long
typedef long long ll;

typedef unsigned long long ul;
typedef unsigned int ui;
const ll mod = 1000000007;
const ll INF = mod * mod;
typedef pair<int, int>P;
#define stop char nyaa;cin>>nyaa;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define Rep(i,sta,n) for(int i=sta;i<n;i++)
#define rep1(i,n) for(int i=1;i<=n;i++)
#define per1(i,n) for(int i=n;i>=1;i--)
#define Rep1(i,sta,n) for(int i=sta;i<=n;i++)
#define all(v) (v).begin(),(v).end()
typedef pair<ll, ll> LP;
typedef long double ld;
typedef pair<ld, ld> LDP;
const ld eps = 1e-12;
const ld pi = acos(-1.0);

ll mod_pow(ll a, ll n, ll m = mod) {
	ll res = 1;
	while (n) {
		if (n & 1)res = res * a%m;
		a = a * a%m; n >>= 1;
	}
	return res;
}

struct modint {
	ll n;
	modint() :n(0) { ; }
	modint(ll m) :n(m) {
		if (n >= mod)n %= mod;
		else if (n < 0)n = (n%mod + mod) % mod;
	}
	operator int() { return n; }
};
bool operator==(modint a, modint b) { return a.n == b.n; }
modint operator+=(modint &a, modint b) { a.n += b.n; if (a.n >= mod)a.n -= mod; return a; }
modint operator-=(modint &a, modint b) { a.n -= b.n; if (a.n < 0)a.n += mod; return a; }
modint operator*=(modint &a, modint b) { a.n = ((ll)a.n*b.n) % mod; return a; }
modint operator+(modint a, modint b) { return a += b; }
modint operator-(modint a, modint b) { return a -= b; }
modint operator*(modint a, modint b) { return a *= b; }
modint operator^(modint a, int n) {
	if (n == 0)return modint(1);
	modint res = (a*a) ^ (n / 2);
	if (n % 2)res = res * a;
	return res;
}

ll inv(ll a, ll p) {
	return (a == 1 ? 1 : (1 - p * inv(p%a, a)) / a + p);
}
modint operator/(modint a, modint b) { return a * modint(inv(b, mod)); }
const int max_n = 10000;
modint fact[max_n], factinv[max_n];
void init_f() {
	fact[0] = modint(1);
	for (int i = 0; i < max_n - 1; i++) {
		fact[i + 1] = fact[i] * modint(i + 1);
	}
	factinv[max_n - 1] = modint(1) / fact[max_n - 1];
	for (int i = max_n - 2; i >= 0; i--) {
		factinv[i] = factinv[i + 1] * modint(i + 1);
	}
}
modint comb(int a, int b) {
	if (a < 0 || b < 0 || a < b)return 0;
	return fact[a] * factinv[b] * factinv[a - b];
}

int dx[4] = { 0,1,0,-1 };
int dy[4] = { 1,0,-1,0 };

vector<int> G[100000];
int n;
int root;
int parent[17][100000];
int depth[100000];
void dfs(int v, int p, int d) {
	parent[0][v] = p;
	depth[v] = d;
	for (int i = 0; i < (int)G[v].size(); i++) {
		if (G[v][i] != p)dfs(G[v][i], v, d + 1);
	}
}
void init(int V) {
	dfs(root, -1, 0);
	for (int k = 0; k + 1 < 17; k++) {
		for (int v = 0; v < V; v++) {
			if (parent[k][v] < 0)parent[k + 1][v] = -1;
			else parent[k + 1][v] = parent[k][parent[k][v]];
		}
	}
}
int lca(int u, int v) {
	if (depth[u] > depth[v])swap(u, v);
	for (int k = 0; k < 17; k++) {
		if ((depth[v] - depth[u]) >> k & 1) {
			v = parent[k][v];
		}
	}
	if (u == v)return u;
	for (int k = 16; k >= 0; k--) {
		if (parent[k][u] != parent[k][v]) {
			u = parent[k][u];
			v = parent[k][v];
		}
	}
	return parent[0][u];
}

struct SegT {
private:
	int sz; vector<int> node;
	const int init_c = n;
public:
	SegT(int n) {
		sz = 1;
		while (sz < n)sz *= 2;
		node.resize(2 * sz - 1, init_c);
	}
	int f(int a, int b) {
		if (a >= n)return b;
		else if (b >= n)return a;
		return lca(a,b);
	}
	void update(int k, int a) {
		k += sz - 1;
		node[k] = a;
		while (k > 0) {
			k = (k - 1) / 2;
			node[k] = f(node[k * 2 + 1], node[k * 2 + 2]);
		}
	}
	int query(int a, int b, int k = 0, int l = 0, int r = -1) {
		if (r < 0)r = sz;
		if (r <= a || b <= l)return init_c;
		else if (a <= l && r <= b)return node[k];
		else {
			int vl = query(a, b, k * 2 + 1, l, (l + r) / 2);
			int vr = query(a, b, k * 2 + 2, (l + r) / 2, r);
			return f(vl, vr);
		}
	}
};
void solve() {
	int n; cin >> n;
	vector<int> p(n);
	rep(i, n) {
		cin >> p[i]; p[i]--;
	}
	vector<int> loc(n);
	rep(i, n) {
		loc[p[i]] = i;
	}
	ll ans = 0;
	vector<vector<int>> mari(n+1,vector<int>(17)), miri(n+1,vector<int>(17));
	{
		set<int> st; st.insert(n);
		per(i, n) {
			st.insert(loc[i]);
			auto itr = st.find(loc[i]);
			itr++;
			mari[loc[i]][0] = *itr;
		}
		mari[n][0] = n;
	}
	{
		set<int> st; st.insert(n);
		rep(i, n) {
			st.insert(loc[i]);
			auto itr = st.find(loc[i]);
			itr++;
			miri[loc[i]][0] = *itr;
		}
		miri[n][0] = n;
	}
	rep(j, 16) {
		rep(i, n+1) {
			mari[i][j + 1] = mari[mari[i][j]][j];
			miri[i][j + 1] = miri[miri[i][j]][j];
		}
	}
	rep(i, n) {
		//increase
		int le = 0, ri = n + 1;
		while (ri - le > 1) {
			int mid = (le + ri) / 2;
			int to = i;
			rep(j, 17)if ((mid >> j) & 1)to = mari[to][j];
			if (to < n&&to < miri[i][0]) {
				le = mid;
			}
			else {
				ri = mid;
			}
		}
		ans += le;
		//decrease
		le = 0, ri = n + 1;
		while (ri - le > 1) {
			int mid = (le + ri) / 2;
			int to = i;
			rep(j, 17)if ((mid >> j) & 1)to = miri[to][j];
			if (to < n&&to < mari[i][0]) {
				le = mid;
			}
			else {
				ri = mid;
			}
		}
		ans += le;
	}
	cout << ans << "\n";
}


signed main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	//cout << fixed << setprecision(7);
	//init_f();
	//init();
	//experi();
	//int t; cin >> t; rep(i, t)solve();
	solve();
	stop
		return 0;
}
0