結果
| 問題 | No.2615 ペアの作り方 |
| コンテスト | |
| ユーザー |
👑 |
| 提出日時 | 2024-01-30 11:03:47 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 25 ms / 2,000 ms |
| + 333µs | |
| コード長 | 1,554 bytes |
| 記録 | |
| コンパイル時間 | 5,508 ms |
| コンパイル使用メモリ | 414,908 KB |
| 実行使用メモリ | 9,732 KB |
| 最終ジャッジ日時 | 2026-09-05 15:31:35 |
| 合計ジャッジ時間 | 7,965 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 |
ソースコード
#ifdef DEBUG
#define _GLIBCXX_DEBUG
#else
#pragma GCC target("avx2")
#pragma GCC optimize("Ofast,unroll-loops")
#endif
#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, n) for (int i = 0; i < n; i++)
#define per(i, n) for (int i = n - 1; i >= 0; i--)
#define ALL(a) a.begin(), a.end()
#define vec vector
#undef long
#define long long long
#define ll long
using namespace std;
using mint = atcoder::modint998244353;
ostream& operator<<(ostream& os, mint a) {
return os << a.val();
}
template<typename T>
ostream& operator<<(ostream& os, vector<T>& a) {
const int n = a.size();
rep(i, n) os << a[i] << " \n"[i + 1 == n];
return os;
}
template<typename T, size_t n>
ostream& operator<<(ostream& os, array<T, n>& a) {
rep(i, n) os << a[i] << " \n"[i + 1 == n];
return os;
}
template<typename T>
istream& operator>>(istream& is, vector<T>& a) {
for (T& i : a) is >> i;
return is;
}
template<typename T>
bool chmin(T& x, T y) {
if (x > y) { x = y; return true; }
return false;
}
template<typename T>
bool chmax(T& x, T y) {
if (x < y) { x = y; return true; }
return false;
}
void solve() {
int n; cin >> n;
const int n2 = n << 1;
vec<int> x(n2);
rep(j, 2) rep(i, n) {
int val; cin >> val;
x[i + n * j] = 2 * val + j;
}
sort(ALL(x));
int odd = 0;
rep(i, n) odd += x[i] & 1;
mint ans = 1;
rep(i, odd) ans *= i + 1;
rep(i, n - odd) ans *= i + 1;
cout << ans << endl;
}
int main() {
// srand((unsigned)time(NULL));
cin.tie(nullptr);
ios::sync_with_stdio(false);
cout << fixed << setprecision(40);
solve();
return 0;
}