結果

問題 No.365 ジェンガソート
ユーザー dgd1724dgd1724
提出日時 2016-10-21 06:41:59
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 831 bytes
コンパイル時間 1,725 ms
コンパイル使用メモリ 164,040 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-23 15:59:24
合計ジャッジ時間 20,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
12,836 KB
testcase_02 AC 1 ms
12,960 KB
testcase_03 AC 2 ms
13,636 KB
testcase_04 AC 1 ms
13,224 KB
testcase_05 AC 2 ms
13,092 KB
testcase_06 AC 1 ms
13,636 KB
testcase_07 AC 2 ms
13,092 KB
testcase_08 AC 2 ms
13,636 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 200 ms
6,820 KB
testcase_17 TLE -
testcase_18 AC 86 ms
6,816 KB
testcase_19 TLE -
testcase_20 AC 1,011 ms
6,816 KB
testcase_21 AC 10 ms
6,816 KB
testcase_22 AC 28 ms
6,816 KB
testcase_23 AC 17 ms
6,820 KB
testcase_24 AC 27 ms
6,820 KB
testcase_25 AC 9 ms
6,820 KB
testcase_26 AC 22 ms
6,824 KB
testcase_27 AC 37 ms
6,820 KB
testcase_28 AC 22 ms
6,816 KB
testcase_29 AC 33 ms
6,816 KB
testcase_30 AC 22 ms
6,820 KB
testcase_31 AC 11 ms
6,816 KB
testcase_32 AC 10 ms
6,820 KB
testcase_33 AC 35 ms
6,816 KB
testcase_34 AC 8 ms
6,816 KB
testcase_35 AC 27 ms
6,820 KB
testcase_36 TLE -
testcase_37 AC 37 ms
6,816 KB
testcase_38 AC 37 ms
6,820 KB
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

//const static double	de_PI	= 3.14159265358979323846;
//const static int	de_MOD	= 1000000007;
//const static int	de_MAX	= 999999999;
//const static int	de_MIN = -999999999;

int main(void) {

	//std::ifstream in("123.txt");	std::cin.rdbuf(in.rdbuf());

	int N = 0;
	std::cin >> N;
	std::list<int> A(N);
	for (auto itr = A.begin(); itr != A.end(); itr++) {
		std::cin >> *itr;
	}
	
	int ans = 0, max = 0;
	std::vector<int> temp;

	while (!A.empty()) {

		auto itr = std::max_element(A.begin(), A.end());
		if (max < *itr) {
			while (itr != --A.end()) {
				temp.push_back(A.back());
				A.pop_back();
				ans++;
			}
			A.pop_back();
			if (!temp.empty()) {
				max = *std::max_element(temp.begin(), temp.end());
			}
		}
		else {
			ans += A.size();
			break;
		}
	}
	
	std::cout << ans << std::endl;
}

0