結果
問題 | No.727 仲介人moko |
ユーザー | kakira9618 |
提出日時 | 2018-08-24 22:55:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,414 bytes |
コンパイル時間 | 1,284 ms |
コンパイル使用メモリ | 163,948 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 08:48:30 |
合計ジャッジ時間 | 2,141 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define pb push_back #define mp make_pair #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) constexpr int MOD = 1000000007; typedef long long ll; typedef unsigned long long ull; typedef pair<int,int> pii; constexpr int dx[] = {1, 0, -1, 0, 1, 1, -1, -1}; constexpr int dy[] = {0, -1, 0, 1, 1, -1, -1, 1}; template <typename T> ostream &operator<<(ostream &os, const vector<T> &vec){os << "["; for (const auto &v : vec) {os << v << ","; } os << "]"; return os; } const int mod = 1e9 + 7; ll fact(ll N) { if (N == 1) return 1; return N * fact(N - 1) % mod; } void solve() { int N; cin >> N; if (N > 10) { exit(1); return; } vector<vector<ll>> dp(1 << N, vector<ll>(1 << N)); dp[0][0] = 1; for(int i = 0; i < 1 << N; i++) { for(int j = 0; j < 1 << N; j++) { for(int k = 0; k < N; k++) { if (!(i >> k & 1)) { dp[i | (1 << k)][j] += dp[i][j]; dp[i | (1 << k)][j] %= mod; } } for(int k = 0; k < N; k++) { if ((i >> k & 1) && !(j >> k & 1)) { dp[i][j | (1 << k)] += dp[i][j]; dp[i | (1 << k)][j] %= mod; } } } } cout << (dp.back().back() * fact(N)) % mod << endl; } int main() { std::cin.tie(0); std::ios::sync_with_stdio(false); cout.setf(ios::fixed); cout.precision(16); solve(); return 0; }