結果
問題 | No.1001 注文の多い順列 |
ユーザー | ferin |
提出日時 | 2020-02-29 15:07:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 36 ms / 2,000 ms |
コード長 | 5,824 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 213,528 KB |
実行使用メモリ | 20,864 KB |
最終ジャッジ日時 | 2024-10-13 20:01:25 |
合計ジャッジ時間 | 3,393 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 29 ms
17,920 KB |
testcase_19 | AC | 27 ms
16,384 KB |
testcase_20 | AC | 18 ms
11,776 KB |
testcase_21 | AC | 17 ms
10,752 KB |
testcase_22 | AC | 36 ms
20,864 KB |
testcase_23 | AC | 35 ms
20,736 KB |
testcase_24 | AC | 36 ms
20,864 KB |
testcase_25 | AC | 35 ms
20,352 KB |
testcase_26 | AC | 3 ms
5,248 KB |
testcase_27 | AC | 7 ms
5,504 KB |
testcase_28 | AC | 11 ms
7,680 KB |
testcase_29 | AC | 15 ms
9,728 KB |
testcase_30 | AC | 18 ms
11,136 KB |
testcase_31 | AC | 21 ms
13,056 KB |
testcase_32 | AC | 3 ms
5,248 KB |
testcase_33 | AC | 3 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using PII = pair<ll, ll>; #define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(x) x.begin(), x.end() template<typename T> void chmin(T &a, const T &b) { a = min(a, b); } template<typename T> void chmax(T &a, const T &b) { a = max(a, b); } struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio; #ifdef DEBUG_ #include "../program_contest_library/memo/dump.hpp" #else #define dump(...) #endif const ll INF = 1LL<<60; template<ll MOD> struct modint { ll x; modint(): x(0) {} modint(ll y) : x(y>=0 ? y%MOD : y%MOD+MOD) {} static constexpr ll mod() { return MOD; } // e乗 modint pow(ll e) { ll a = 1, p = x; while(e > 0) { if(e%2 == 0) {p = (p*p) % MOD; e /= 2;} else {a = (a*p) % MOD; e--;} } return modint(a); } modint inv() const { ll a=x, b=MOD, u=1, y=1, v=0, z=0; while(a) { ll q = b/a; swap(z -= q*u, u); swap(y -= q*v, v); swap(b -= q*a, a); } return z; } // Comparators bool operator <(modint b) { return x < b.x; } bool operator >(modint b) { return x > b.x; } bool operator<=(modint b) { return x <= b.x; } bool operator>=(modint b) { return x >= b.x; } bool operator!=(modint b) { return x != b.x; } bool operator==(modint b) { return x == b.x; } // Basic Operations modint operator+(modint r) const { return modint(*this) += r; } modint operator-(modint r) const { return modint(*this) -= r; } modint operator*(modint r) const { return modint(*this) *= r; } modint operator/(modint r) const { return modint(*this) /= r; } modint &operator+=(modint r) { if((x += r.x) >= MOD) x -= MOD; return *this; } modint &operator-=(modint r) { if((x -= r.x) < 0) x += MOD; return *this; } modint &operator*=(modint r) { #if !defined(_WIN32) || defined(_WIN64) x = x * r.x % MOD; return *this; #endif unsigned long long y = x * r.x; unsigned xh = (unsigned) (y >> 32), xl = (unsigned) y, d, m; asm( "divl %4; \n\t" : "=a" (d), "=d" (m) : "d" (xh), "a" (xl), "r" (MOD) ); x = m; return *this; } modint &operator/=(modint r) { return *this *= r.inv(); } // increment, decrement modint operator++() { x++; return *this; } modint operator++(signed) { modint t = *this; x++; return t; } modint operator--() { x--; return *this; } modint operator--(signed) { modint t = *this; x--; return t; } // 平方剰余のうち一つを返す なければ-1 friend modint sqrt(modint a) { if(a == 0) return 0; ll q = MOD-1, s = 0; while((q&1)==0) q>>=1, s++; modint z=2; while(1) { if(z.pow((MOD-1)/2) == MOD-1) break; z++; } modint c = z.pow(q), r = a.pow((q+1)/2), t = a.pow(q); ll m = s; while(t.x>1) { modint tp=t; ll k=-1; FOR(i, 1, m) { tp *= tp; if(tp == 1) { k=i; break; } } if(k==-1) return -1; modint cp=c; REP(i, m-k-1) cp *= cp; c = cp*cp, t = c*t, r = cp*r, m = k; } return r.x; } template<class T> friend modint operator*(T l, modint r) { return modint(l) *= r; } template<class T> friend modint operator+(T l, modint r) { return modint(l) += r; } template<class T> friend modint operator-(T l, modint r) { return modint(l) -= r; } template<class T> friend modint operator/(T l, modint r) { return modint(l) /= r; } template<class T> friend bool operator==(T l, modint r) { return modint(l) == r; } template<class T> friend bool operator!=(T l, modint r) { return modint(l) != r; } // Input/Output friend ostream &operator<<(ostream& os, modint a) { return os << a.x; } friend istream &operator>>(istream& is, modint &a) { is >> a.x; a.x = ((a.x%MOD)+MOD)%MOD; return is; } friend string to_frac(modint v) { static map<ll, PII> mp; if(mp.empty()) { mp[0] = mp[MOD] = {0, 1}; FOR(i, 2, 1001) FOR(j, 1, i) if(__gcd(i, j) == 1) { mp[(modint(i) / j).x] = {i, j}; } } auto itr = mp.lower_bound(v.x); if(itr != mp.begin() && v.x - prev(itr)->first < itr->first - v.x) --itr; string ret = to_string(itr->second.first + itr->second.second * ((int)v.x - itr->first)); if(itr->second.second > 1) { ret += '/'; ret += to_string(itr->second.second); } return ret; } }; using mint = modint<1000000007>; int main(void) { ll n; cin >> n; vector<ll> t(n), x(n), a, b; REP(i, n) { cin >> t[i] >> x[i]; x[i]--; if(t[i] == 0) a.push_back(x[i]); // p[i] <= x[i] else b.push_back(x[i]); // p[i] >= x[i] } sort(ALL(a)); sort(ALL(b)); // cnta[i] = aでi以上の個数 // cntb[i] = bでi以下の個数 vector<ll> cnta(n+5), cntb(n+5); REP(i, n) { cnta[i] = a.size() - (lower_bound(ALL(a), i) - a.begin()); cntb[i] = upper_bound(ALL(b), i) - b.begin(); } vector<vector<mint>> dp(a.size()+1, vector<mint>(b.size()+1)); dp[0][0] = 1; REP(i, a.size()+1) REP(j, b.size()+1) { if(j+1<=(ll)b.size()) dp[i][j+1] += dp[i][j] * (cntb[i+j] - j); if(i+1<=(ll)a.size()) dp[i+1][j] += dp[i][j] * (cnta[i+j] - ((ll)a.size()-i-1)); } cout << dp[a.size()][b.size()] << endl; return 0; }