結果

問題 No.318 学学学学学
ユーザー nksk38nksk38
提出日時 2017-10-06 21:21:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 2,125 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 92,384 KB
実行使用メモリ 16,952 KB
最終ジャッジ日時 2024-06-22 18:21:43
合計ジャッジ時間 4,826 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,816 KB
testcase_01 AC 32 ms
7,568 KB
testcase_02 AC 38 ms
8,244 KB
testcase_03 AC 24 ms
7,324 KB
testcase_04 AC 34 ms
8,004 KB
testcase_05 AC 226 ms
16,952 KB
testcase_06 AC 178 ms
12,260 KB
testcase_07 AC 147 ms
10,620 KB
testcase_08 AC 126 ms
9,448 KB
testcase_09 AC 114 ms
8,508 KB
testcase_10 AC 99 ms
7,488 KB
testcase_11 AC 239 ms
16,824 KB
testcase_12 AC 174 ms
12,156 KB
testcase_13 AC 130 ms
10,692 KB
testcase_14 AC 113 ms
9,380 KB
testcase_15 AC 98 ms
8,520 KB
testcase_16 AC 83 ms
7,976 KB
testcase_17 AC 128 ms
12,260 KB
testcase_18 AC 119 ms
12,228 KB
testcase_19 AC 126 ms
12,408 KB
testcase_20 AC 63 ms
7,776 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<string>
#include<cstring>
#include<queue>
#include<vector>
#include<functional>
#include<cmath>
#include<map>
#include<stack>
#include<set>
#include<numeric>
#include<limits>
#include<iterator>

#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define rep(i,n) for(int i=0; i<n; i++)
#define FOR(i,a,n) for(int i=a; i<n; i++)

using namespace std;
typedef long long ll;
typedef pair<int, int> pi;
typedef pair<ll, ll> pl;
typedef pair<ll, char> plc;

const int MAX_N = 1 << 18;
int n,sz;
ll node[MAX_N], lazy[MAX_N];

struct LazySegmentTree {
	LazySegmentTree(int n) {
		sz = 1;
		while (n > sz )sz *= 2;
		for (int i = 0; i < 2 * sz - 1; i++)lazy[i] = -1;
	}

	void lazy_evaluate_node(int k, int l, int r) {
		if (lazy[k] != -1) { 
			node[k] = lazy[k] * (r - l); 
			if (r - l > 1) {
				lazy[k * 2 + 1] = lazy[k]; 
				lazy[k * 2 + 2] = lazy[k]; 
			}
			lazy[k] = -1;
		}
	}
	
	void update(int a, int b, ll v, int k = 0, int l = 0, int r = sz) {
		lazy_evaluate_node(k, l, r); 
		if (r <= a || b <= l)return; 
		if (a <= l && r <= b) {
			lazy[k] = v;
			lazy_evaluate_node(k, l, r);
		}
		else {
			update(a, b, v, k * 2 + 1, l, (l + r) / 2);
			update(a, b, v, k * 2 + 2, (l + r) / 2, r);
			node[k] = node[k * 2 + 1] + node[k * 2 + 2];
		}
	}
	ll get(int a, int b, int k = 0, int l = 0, int r = sz) {
		lazy_evaluate_node(k, l, r);
		if (r <= a || b <= l)return 0;
		if (a <= l && r <= b)return node[k];
		ll x = get(a, b, k * 2 + 1, l, (l + r) / 2); 
		ll y = get(a, b, k * 2 + 2, (l + r) / 2, r);
		return x + y;
	}
};

int main()
{
	cin >> n;

	vector<int> a(n);
	rep(i, n)cin >> a[i];

	map<int, int>left, right;
	rep(i, n) {
		if (left.count(a[i]) == 0)
			left[a[i]] = i;
	}

	for (int i = n - 1; i >= 0; i--) {
		if (right.count(a[i]) == 0) {
			right[a[i]] = i;
		}
	}

	LazySegmentTree seg(n);
	rep(i, n)seg.update(i,i+1,a[i]);

	for (auto v : left) {
		if (right.count(v.first)) {
			seg.update(v.second, right[v.first] + 1, v.first);
		}
	}

	rep(i, n)printf("%d ",(int)seg.get(i,i+1));
	printf("\n");
	return 0;
}
0