結果

問題 No.833 かっこいい電車
コンテスト
ユーザー bal4u
提出日時 2019-07-30 07:09:22
言語 C(gnu17)
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=gnu17 -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
AC  
実行時間 14 ms / 2,000 ms
コード長 1,803 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 321 ms
コンパイル使用メモリ 40,140 KB
最終ジャッジ日時 2026-02-22 04:03:26
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

// yukicoder: No.833 かっこいい電車
// 2019.7.30 bal4u

#include <stdio.h>

typedef long long ll;

#if 1
#define gc() getchar_unlocked()
#define pc(c) putchar_unlocked(c)
#else
#define gc() getchar()
#define pc(c) putchar(c)
#endif
int in() {   // 非負整数の入力
	int n = 0, c = gc();
	do n = 10 * n + (c & 0xf); while ((c = gc()) >= '0');
	return n;
}

void out(ll n) { // 正整数の表示(出力)
	int i;
	char b[50];

	i = 0; while (n) b[i++] = n % 10 + '0', n /= 10;
	while (i--) pc(b[i]);
	pc('\n');
}

// bit木
ll bit[100005], bitn;

void add(int i, int v) {
    while (i <= bitn) bit[i] += v, i += i & -i;
}
 
ll sum(int i) {
    ll s = 0;
    while (i > 0) s += bit[i], i -= i & -i;
    return s;
}

// 単体車両のカッコよさ、グループの先頭、グループの末尾、グループのカッコよさ
typedef struct { int a, top, r; ll total; } T;
T tbl[100005]; int N;

int top(int x) {
	int t;
	do t = x, x = tbl[x].top;
	while (t != x);
	return x;
}
	
int main()
{
	int i, id, Q, x, t; ll s;

	bitn = N = in(), Q = in();
	for (i = 1; i <= N; i++) {
		tbl[i].a = t = in(), tbl[i].top = i, tbl[i].r = i;
		tbl[i].total = t, add(i, t); 
	}
	while (Q--) {
		id = gc() & 0xf, gc(), x = in();
		if (id == 1) { // connecct
			if ((t = top(x)) != top(x+1)) {
				tbl[x+1].top = t,
				tbl[t].r = tbl[x+1].r;
				tbl[t].total += tbl[x+1].total;
			}
		} else if (id == 2) { // separate
			if ((t = top(x)) == top(x+1)) {
				tbl[x+1].r = tbl[t].r;
				tbl[t].r = x;
				tbl[x+1].total = sum(tbl[x+1].r) - sum(x);
				tbl[t].total -= tbl[x+1].total;
				for (i = tbl[++x].r; i >= x; i--) tbl[i].top = x; 
			}
		} else if (id == 3) { // remodel
			tbl[x].a++, add(x, 1), tbl[top(x)].total++;
		} else { // attractiveness
			out(tbl[top(x)].total);
		}
	}
	return 0;
}
0