結果

問題 No.318 学学学学学
ユーザー FF256grhyFF256grhy
提出日時 2015-12-11 12:45:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,773 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 24,320 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-06-22 15:29:15
合計ジャッジ時間 3,011 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,904 KB
testcase_01 AC 15 ms
7,792 KB
testcase_02 AC 17 ms
8,304 KB
testcase_03 AC 11 ms
7,540 KB
testcase_04 AC 16 ms
8,052 KB
testcase_05 AC 88 ms
17,012 KB
testcase_06 AC 105 ms
12,148 KB
testcase_07 AC 91 ms
10,228 KB
testcase_08 AC 70 ms
8,692 KB
testcase_09 AC 55 ms
7,412 KB
testcase_10 AC 38 ms
6,940 KB
testcase_11 AC 88 ms
20,608 KB
testcase_12 AC 61 ms
12,148 KB
testcase_13 AC 54 ms
10,224 KB
testcase_14 AC 46 ms
8,692 KB
testcase_15 AC 42 ms
7,412 KB
testcase_16 AC 37 ms
6,940 KB
testcase_17 AC 48 ms
6,944 KB
testcase_18 AC 38 ms
7,024 KB
testcase_19 AC 50 ms
8,516 KB
testcase_20 AC 36 ms
6,944 KB
testcase_21 AC 1 ms
6,940 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 1 ms
6,940 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:97:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   97 |         scanf("%d", &n);
      |         ~~~~~^~~~~~~~~~
main.cpp:100:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  100 |                 scanf("%d", &a[i]);
      |                 ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define MAX 100000 * 30
#define L 250

int n, a[MAX];
int tree[2][MAX], tree_ptr = 1, val[MAX], first[MAX], last[MAX], leaf_ptr = 1;
int b[400][L], is_all[400], all_val[400];

void add_tree(int v, int p) {
	int i, q = 0;
	for(i = 29; 0 <= i; i--) {
		int *r = &tree[(v / (1 << i)) % 2][q];
		if(*r == 0) {
			if(i != 0) {
				*r = tree_ptr++;
			} else {
				*r = leaf_ptr++;
			}
		}
		q = *r;
	}
	
	if(val[q] == 0) {
		val[q] = v;
		first[q] = p;
	} else {
		last[q] = p;
	}
	
	return;
}

void flip_all(int v, int p) {
	all_val[p] = v;
	is_all[p] = 1;
	
	return;
}

void flip_part(int v, int p, int f, int l) {
	if(f == 0 && l == L - 1) { flip_all(v, p); return; }

	int i;
	if(is_all[p] == 0) {
		for(i = f; i <= l; i++) { b[p][i] = v; }
	} else {
		for(i = 0; i < L; i++) {
			b[p][i] = (f <= i && i <= l ? v : all_val[p]);
		}
	}
	is_all[p] = 0;
	
	return;
}

void flip(int v, int f, int l) {
	int i;
	if(f / L == l / L) {
		flip_part(v, f / L, f % L, l % L);
	} else {
		flip_part(v, f / L, f % L, L - 1);
		for(i = f / L + 1; i < l / L; i++) { flip_all(v, i); }
		flip_part(v, l / L,     0, l % L);
	}
	
	return;
}

void search(int q, int h) {
	if(h != 0 && q == 0) { return; }
	
	if(h < 30) {
		search(tree[0][q], h + 1);
		search(tree[1][q], h + 1);
	} else {
		flip(val[q], first[q], (last[q] == 0 ? first[q] : last[q]));
	}
	
	return;
}

void print() {
	int i, j;
	for(i = 0; i < (n + L - 1) / L; i++) {
	for(j = 0; j < L; j++) {
		if(L * i + j == n) { break; }
		printf("%s%d", (i == 0 && j == 0 ? "" : " "), (is_all[i] ? all_val[i] : b[i][j]) );
	}
	}
	printf("\n");
	
	return;
}

int main(void) {
	scanf("%d", &n);
	int i;
	for(i = 0; i < n; i++) {
		scanf("%d", &a[i]);
		add_tree(a[i], i);
	}
	
	search(0, 0);
	
	print();
	
	return 0;
}
0