結果
| 問題 |
No.1001 注文の多い順列
|
| コンテスト | |
| ユーザー |
jell
|
| 提出日時 | 2020-03-16 22:31:37 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 84 ms / 2,000 ms |
| コード長 | 6,424 bytes |
| コンパイル時間 | 1,215 ms |
| コンパイル使用メモリ | 98,844 KB |
| 最終ジャッジ日時 | 2025-01-09 07:24:11 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 31 |
コンパイルメッセージ
main.cpp:100:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
100 | main()
| ^~~~
ソースコード
#include <iostream>
#include <vector>
#include <bitset>
#include <functional>
#include <queue>
#include <algorithm>
#include <map>
#include <set>
#include <tuple>
#include <numeric>
using namespace std;
template <class T> void chmax(T &x, T y) {if(x<y) x=y;}
template <class T> void chmin(T &x, T y) {if(x>y) x=y;}
#ifndef Modint_hpp
#define Modint_hpp
#include <cassert>
#include <iostream>
template <int mod>
class modint
{
int val;
public:
constexpr modint() noexcept : val{0} {}
constexpr modint(long long x) noexcept : val((x %= mod) < 0 ? mod + x : x) {}
constexpr long long value() const noexcept { return val; }
constexpr modint operator++(int) noexcept { modint t = *this; return ++val, t; }
constexpr modint operator--(int) noexcept { modint t = *this; return --val, t; }
constexpr modint &operator++() noexcept { return ++val, *this; }
constexpr modint &operator--() noexcept { return --val, *this; }
constexpr modint operator-() const noexcept { return modint(-val); }
constexpr modint &operator+=(const modint &other) noexcept { return (val += other.val) < mod ? 0 : val -= mod, *this; }
constexpr modint &operator-=(const modint &other) noexcept { return (val += mod - other.val) < mod ? 0 : val -= mod, *this; }
constexpr modint &operator*=(const modint &other) noexcept { return val = (long long)val * other.val % mod, *this; }
constexpr modint &operator/=(const modint &other) noexcept { return *this *= inverse(other); }
constexpr modint operator+(const modint &other) const noexcept { return modint(*this) += other; }
constexpr modint operator-(const modint &other) const noexcept { return modint(*this) -= other; }
constexpr modint operator*(const modint &other) const noexcept { return modint(*this) *= other; }
constexpr modint operator/(const modint &other) const noexcept { return modint(*this) /= other; }
constexpr bool operator==(const modint &other) const noexcept { return val == other.val; }
constexpr bool operator!=(const modint &other) const noexcept { return val != other.val; }
constexpr bool operator!() const noexcept { return !val; }
friend constexpr modint operator+(long long x, modint y) noexcept { return modint(x) + y; }
friend constexpr modint operator-(long long x, modint y) noexcept { return modint(x) - y; }
friend constexpr modint operator*(long long x, modint y) noexcept { return modint(x) * y; }
friend constexpr modint operator/(long long x, modint y) noexcept { return modint(x) / y; }
static constexpr modint inverse(const modint &other) noexcept
{
assert(other != 0);
int a{mod}, b{other.val}, u{}, v{1}, t{};
while(b) t = a / b, a ^= b ^= (a -= t * b) ^= b, u ^= v ^= (u -= t * v) ^= v;
return {u};
}
static constexpr modint pow(modint other, long long e) noexcept
{
if(e < 0) e = e % (mod - 1) + mod - 1;
modint res{1};
while(e) { if(e & 1) res *= other; other *= other, e >>= 1; }
return res;
}
friend std::ostream &operator<<(std::ostream &os, const modint &other) noexcept { return os << other.val; }
friend std::istream &operator>>(std::istream &is, modint &other) noexcept { long long val; other = {(is >> val, val)}; return is; }
}; // class modint
template <>
class modint<2>
{
bool val;
public:
constexpr modint(bool x = false) noexcept : val{x} {}
constexpr modint(int x) noexcept : val(x & 1) {}
constexpr modint(long long x) noexcept : val(x & 1) {}
constexpr operator bool() const noexcept { return val; }
constexpr bool value() const noexcept { return val; }
constexpr modint &operator+=(const modint &other) noexcept { return val ^= other.val, *this; }
constexpr modint &operator-=(const modint &other) noexcept { return val ^= other.val, *this; }
constexpr modint &operator*=(const modint &other) noexcept { return val &= other.val, *this; }
constexpr modint &operator/=(const modint &other) noexcept { assert(other.val); return *this; }
constexpr modint operator!() const noexcept { return !val; }
constexpr modint operator-() const noexcept { return *this; }
constexpr modint operator+(const modint &other) const noexcept { return val != other.val; }
constexpr modint operator-(const modint &other) const noexcept { return val != other.val; }
constexpr modint operator*(const modint &other) const noexcept { return val && other.val; }
constexpr modint operator/(const modint &other) const noexcept { assert(other.val); return *this; }
constexpr bool operator==(const modint &other) const noexcept { return val == other.val; }
constexpr bool operator!=(const modint &other) const noexcept { return val != other.val; }
friend constexpr modint operator+(long long x, modint y) noexcept { return x & 1 ? !y : y; }
friend constexpr modint operator-(long long x, modint y) noexcept { return x & 1 ? !y : y; }
friend constexpr modint operator*(long long x, modint y) noexcept { return x & 1 ? y : modint<2>{0}; }
friend constexpr modint operator/(long long x, modint y) noexcept { assert(y.val); return x & 1 ? y : modint<2>{0}; }
friend std::ostream &operator<<(std::ostream &os, const modint &other) noexcept { return os << other.val; }
friend std::istream &operator>>(std::istream &is, modint &other) noexcept { long long val; other.val = (is >> val, val & 1); return is; }
}; // class modint specialization
#endif // Modint_hpp
main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
using mint=modint<1000000007>;
int n; cin>>n;
vector<int> ub(n),lb(n);
int L=0,B=0;
for(int i=0; i<n; ++i)
{
int t,x; cin>>t>>x;
--x;
if(t)
{
L++;
lb[x]++;
}
else
{
B++;
ub[x]++;
}
}
vector<int> lbs(n),ubs(n);
for(int i=0;i<n;++i)
{
if(i) lbs[i]=lbs[i-1]+lb[i];
else lbs[i]=lb[i];
}
for(int i=0;i+1<n;++i)
{
ubs[i+1]=ubs[i]+ub[i];
}
mint dp[3030][3030];
dp[0][0]=1;
for(int i=0;i<=L;++i)
{
for(int j=0;i+j<n;++j)
{
const int now=i+j;
if(lbs[now]>i) dp[i+1][j]+=(lbs[now]-i)*dp[i][j];
if(j>=ubs[now]) dp[i][j+1]+=(j+1-ubs[now])*dp[i][j];
}
}
cout << dp[L][B] << "\n";
return 0;
}
jell