結果

問題 No.497 入れ子の箱
ユーザー masamasa
提出日時 2017-04-18 12:12:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 1,207 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 96,332 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-07-19 07:36:30
合計ジャッジ時間 5,377 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 129 ms
27,008 KB
testcase_04 AC 141 ms
27,008 KB
testcase_05 AC 140 ms
26,880 KB
testcase_06 AC 135 ms
27,008 KB
testcase_07 AC 139 ms
26,880 KB
testcase_08 AC 135 ms
26,880 KB
testcase_09 AC 138 ms
27,008 KB
testcase_10 AC 138 ms
26,880 KB
testcase_11 AC 134 ms
26,880 KB
testcase_12 AC 107 ms
15,488 KB
testcase_13 AC 107 ms
15,104 KB
testcase_14 AC 110 ms
14,848 KB
testcase_15 AC 109 ms
15,488 KB
testcase_16 AC 106 ms
15,488 KB
testcase_17 AC 105 ms
14,976 KB
testcase_18 AC 130 ms
26,880 KB
testcase_19 AC 133 ms
26,752 KB
testcase_20 AC 133 ms
26,880 KB
testcase_21 AC 134 ms
26,880 KB
testcase_22 AC 130 ms
26,880 KB
testcase_23 AC 52 ms
6,940 KB
testcase_24 AC 50 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 120 ms
19,840 KB
testcase_28 AC 120 ms
19,712 KB
testcase_29 AC 121 ms
19,584 KB
testcase_30 AC 67 ms
6,944 KB
testcase_31 AC 66 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <vector>
#include <algorithm>
#include <utility>
#include <string>
#include <set>
#include <queue>
#include <numeric>

using namespace std;
using PII = pair<int, int>;

bool is_bigger(vector<int> a, vector<int> b) {
	do {
		if (a[0] > b[0] && a[1] > b[1] && a[2] > b[2]) {
			return true;
		}
	} while (next_permutation(b.begin(), b.end()));

	return false;
}

int main() {
	int n, x, y, z;
	cin >> n;

	vector<vector<int>> cubes(n);
	for (int i = 0; i < n; i++) {
		cin >> x >> y >> z;
		cubes[i] = {x, y, z};
		sort(cubes[i].begin(), cubes[i].end());
	}

	vector<set<int>> connect(n);

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < n; j++) {
			if (i != j && is_bigger(cubes[i], cubes[j])) {
				connect[i].insert(j);
			}
		}
	}

	priority_queue<PII, vector<PII>, greater<PII>> que;
	for (int i = 0; i < n; i++) {
		que.push(make_pair(connect[i].size(), i));
	}


	vector<int> memo(n, 0);
	while (!que.empty()) {
		auto p = que.top();
		que.pop();
		int x = p.second;
		int maxi = memo[x];
		for (auto e : connect[x]) {
			maxi = max(maxi, memo[e]);
		}
		memo[x] = maxi + 1;
	}

	cout << *max_element(memo.begin(), memo.end()) << endl;
	return 0;
}
0