結果

問題 No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N)
ユーザー eve__fuyuki
提出日時 2025-09-08 13:52:37
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 2,096 ms
コンパイル使用メモリ 197,864 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-09-08 13:52:40
合計ジャッジ時間 3,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
	ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
}

int main() {
	fast_io();
	int n;
	cin >> n;
	vector<int> l(n), r(n);
	for (int i = 0; i < n; i++) {
		cin >> l[i] >> r[i];
	}
	vector<int> p(n);
	iota(p.begin(), p.end(), 0);
	int ans = 0;
	do {
		int cur = 0;
		bool ok = true;
		for (int i : p) {
			if (cur > r[i]) {
				ok = false;
				break;
			}
			cur = max(cur, l[i]);
		}
		ans += ok;
	} while (next_permutation(p.begin(), p.end()));
	cout << ans << endl;
}
0