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