結果

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

ソースコード

diff #

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

int main(){
    int n;
    cin >> n;

    vector<int>per (n);
    vector<vector<int>>diff (n,vector<int>(2));
    for(int i=0;i<n;i++){
        per[i] = i;
        cin >> diff[i][0] >> diff[i][1];
    }

    int ans = 0;
    do{
        int mn = 0;
        bool che = true;

        for(auto x:per){
            if(mn > diff[x][1])che = false;
            else mn = max(mn,diff[x][0]);
        }

        if(che) ans++;

    }while(next_permutation(per.begin(),per.end()));


    cout << ans << endl;
    
}
0