結果

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

ソースコード

diff #

#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';
}
0