結果

問題 No.1079 まお
ユーザー jupirojupiro
提出日時 2020-06-13 01:13:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 2,288 bytes
コンパイル時間 1,537 ms
コンパイル使用メモリ 142,656 KB
実行使用メモリ 8,292 KB
最終ジャッジ日時 2024-06-24 06:14:39
合計ジャッジ時間 7,897 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,948 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 161 ms
6,944 KB
testcase_13 AC 157 ms
6,944 KB
testcase_14 AC 239 ms
6,940 KB
testcase_15 AC 253 ms
7,264 KB
testcase_16 AC 259 ms
7,664 KB
testcase_17 AC 329 ms
7,484 KB
testcase_18 AC 257 ms
6,944 KB
testcase_19 AC 356 ms
7,460 KB
testcase_20 AC 343 ms
7,480 KB
testcase_21 AC 321 ms
7,276 KB
testcase_22 AC 344 ms
8,048 KB
testcase_23 AC 332 ms
8,012 KB
testcase_24 AC 363 ms
8,112 KB
testcase_25 AC 364 ms
8,044 KB
testcase_26 AC 389 ms
8,128 KB
testcase_27 AC 40 ms
6,940 KB
testcase_28 AC 165 ms
6,940 KB
testcase_29 AC 178 ms
8,288 KB
testcase_30 AC 180 ms
8,292 KB
testcase_31 AC 47 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;
const long double PI = acos((long double)(-1));

using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;


ll n, k;
vector<ll> a;

ll calc(vector<ll> &v1, vector<ll> &v2) {
	ll idx = 0; //v2のidx
	ll mn = INF; //最小値
	ll mn_cnt = 0; //minの最小値(1以外はout)
	ll res = 0;
	map<ll, pair<ll, ll>> mp; //値、個数、総和
	for (ll i = 0; i < v1.size(); i++) {
		if (chmin(mn, v1[i])) mn_cnt = 1;
		else if (mn == v1[i]) mn_cnt++;
		if (mn_cnt > 1) continue;
		while (idx < v2.size() and v2[idx] > mn) {
			mp[v2[idx]].first++;
			mp[v2[idx]].second += v1.size() + idx + 1;
			idx++;
		}
		if (mp.find(k - v1[i]) != mp.end()) res += mp[k - v1[i]].second - (v1.size() - i - 1) * mp[k - v1[i]].first;
	}
	return res;
}


ll f(int left, int right) {
	if (right - left <= 0) return 0;
	if (right - left == 1) return a[left] * 2 == k;
	ll mid = (left + right) >> 1;
	ll res = f(left, mid) + f(mid, right);
	vector<ll> v1, v2;
	for (int i = left; i < mid; i++) v1.emplace_back(a[i]);
	for (int i = mid; i < right; i++) v2.emplace_back(a[i]);
	reverse(v1.begin(), v1.end());
	res += calc(v1, v2); //v1側に最小値がある場合
	res += calc(v2, v1); //v2側に最小値がある場合
	return res;
}

int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	scanf("%lld %lld", &n, &k);
	a.resize(n); for (int i = 0; i < n; i++) scanf("%lld", &a[i]);
	cout << f(0, n) << endl;
	return 0;
}
0