結果
| 問題 | No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-09-06 13:17:24 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 473µs | |
| コード長 | 626 bytes |
| 記録 | |
| コンパイル時間 | 1,134 ms |
| コンパイル使用メモリ | 215,064 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-14 18:44:55 |
| 合計ジャッジ時間 | 2,511 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 24 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin >> n;
vector<pair<int,int>> a(n);
for(auto &&[l, r] : a) cin >> l >> r;
vector<int> ord(n);
iota(ord.begin(), ord.end(), 0);
int ans = 0;
do{
int v = 0;
for(auto idx : ord){
auto [l, r] = a[idx];
if(v > r){
v = -1;
break;
}
v = max(v, l);
}
ans += (v != -1);
}while(next_permutation(ord.begin(), ord.end()));
cout << ans << '\n';
}