結果
問題 |
No.3262 水色コーダーさん、その問題d問題ですよ?(1<=d<=N)
|
ユーザー |
|
提出日時 | 2025-09-06 13:15:40 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 409 bytes |
コンパイル時間 | 2,907 ms |
コンパイル使用メモリ | 278,428 KB |
実行使用メモリ | 7,716 KB |
最終ジャッジ日時 | 2025-09-06 13:17:25 |
合計ジャッジ時間 | 4,074 ms |
ジャッジサーバーID (参考情報) |
judge / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll=long long; int main(){ int n; cin>>n; vector<int> l(n),r(n); for(int i=0;i<n;i++)cin>>l[i]>>r[i]; vector<int> p(n); iota(p.begin(),p.end(),0); int ans=0; do{ int x=0; bool ok=true; for(int i=0;i<n;i++){ if(x>r[p[i]])ok=false; else x=max(x,l[p[i]]); } if(ok)ans++; }while(next_permutation(p.begin(),p.end())); cout<<ans<<endl; }