結果

問題 No.1786 Maximum Suffix Median (Online)
ユーザー 沙耶花沙耶花
提出日時 2021-12-15 01:56:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,209 ms
コンパイル使用メモリ 204,440 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-07-23 19:49:50
合計ジャッジ時間 7,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 139 ms
12,032 KB
testcase_09 AC 91 ms
9,472 KB
testcase_10 AC 100 ms
9,856 KB
testcase_11 AC 77 ms
8,704 KB
testcase_12 AC 150 ms
12,544 KB
testcase_13 AC 132 ms
12,032 KB
testcase_14 AC 94 ms
9,984 KB
testcase_15 AC 109 ms
10,752 KB
testcase_16 AC 115 ms
10,880 KB
testcase_17 AC 94 ms
9,728 KB
testcase_18 AC 158 ms
12,928 KB
testcase_19 AC 164 ms
12,928 KB
testcase_20 AC 165 ms
12,928 KB
testcase_21 AC 163 ms
12,928 KB
testcase_22 AC 162 ms
12,928 KB
testcase_23 AC 107 ms
10,880 KB
testcase_24 AC 75 ms
8,960 KB
testcase_25 AC 127 ms
12,288 KB
testcase_26 AC 102 ms
11,136 KB
testcase_27 AC 89 ms
10,496 KB
testcase_28 AC 106 ms
11,648 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 125 ms
13,056 KB
testcase_32 AC 136 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001

int main(){
	
	int last = 0;
	
	
	int N;
	scanf("%d",&N);
	multiset<int> S;
	S.insert(0);
	rep(i,N){
		int A;
		scanf("%d",&A);
		A ^= last;
		rep(j,2)S.insert(A+1);
		
		auto it = S.end();
		it--;
		S.erase(it);
		it = S.end();
		it--;
		int ok = *it;
		ok--;
		printf("%d\n",ok);
		last = ok;
	}
	
	
	return 0;
}
0