結果

問題 No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N)
コンテスト
ユーザー syoyudango
提出日時 2025-10-20 03:48:23
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,779 ms
コンパイル使用メモリ 278,872 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-10-20 03:48:28
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int N;
    cin >> N;
    vector<int> L(N), R(N);
    for (int i = 0; i < N; i++) {
        cin >> L[i] >> R[i];
    }
    int ans = 0;
    vector<int> A(N);
    iota(A.begin(), A.end(), 0);
    do {
        int tmp = L[A[0]];
        bool ok = true;
        for (int i = 1; i < N; i++) {
            ok &= tmp <= R[A[i]];
            tmp = max(tmp, L[A[i]]);
        }
        ans += ok;
    } while (next_permutation(A.begin(), A.end()));
    cout << ans << endl;
    return 0;
}
0