結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N, ans = 0;
    cin >> N;
    vector<int> L(N), R(N), idx(N);
    for(int i=0; i<N; i++) cin >> L[i] >> R[i];
    iota(idx.begin(), idx.end(), 0);
    do {
        int x = 0;
        bool ok = true;
        for(int i=0; i<N; i++) {
            if(x > R[idx[i]]) ok = false;
            x = max(x, L[idx[i]]);
        }
        ans += ok;
    } while(next_permutation(idx.begin(), idx.end()));
    cout << ans << endl;
}
0