Submission #1987435


Source Code Expand

# include <iostream>
# include <algorithm>
# include <vector>
# include <string>
# include <set>
# include <map>
# include <cmath>
# include <iomanip>
# include <functional>
# include <utility>
# include <stack>
# include <queue>
# include <list>
# include <tuple>
# include <unordered_map>
# include <numeric>
# include <complex>
# include <bitset>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
constexpr int INF = 2000000000;
constexpr int HINF = INF / 2;
constexpr double DINF = 100000000000000000.0;
constexpr long long LINF = 9223372036854775807;
constexpr long long HLINF = 4500000000000000000;
constexpr long long MMOD = 500000004;
const double PI = acos(-1);
int dx[4] = { 0,1,0,-1 }, dy[4] = { 1,0,-1,0 };
# define ALL(x)     (x).begin(),(x).end()
# define UNIQ(c)    (c).erase(unique(ALL((c))), end((c)))
# define mp         make_pair
# define eb         emplace_back
# define FOR(i,a,b) for(int i=(a);i<(b);++i)
# define REP(i,n)   FOR(i,0,n)
# define INIT       std::ios::sync_with_stdio(false);std::cin.tie(0);

int a[101010], b[101010];
vector<pair<int, int>>v;
const int MOD = 1e9 + 7;

int main(){
	int n;
	cin >> n;
	for (int i = 0; i < n; i++) cin >> a[i], v.emplace_back(a[i], 1);
	for (int i = 0; i < n; i++) cin >> b[i], v.emplace_back(b[i], 2);
	sort(ALL(v));
	LL ans = 1;
	int pa = 0, pb = 0;
	for (int i = 0; i < 2 * n; i++) {
		if (v[i].second == 1) {
			if (pb == 0)pa++;
			else (ans *= pb) %= MOD,pb--;
		}
		if (v[i].second == 2) {
			if (pa == 0)pb++;
			else (ans *= pa) %= MOD,pa--;
		}
	}
	cout << ans%MOD << endl;
}

Submission Info

Submission Time
Task A - 1D Matching
User M3_cp
Language C++14 (GCC 5.4.1)
Score 500
Code Size 1638 Byte
Status AC
Exec Time 126 ms
Memory 2932 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 500 / 500
Status
AC × 2
AC × 14
Set Name Test Cases
Sample example0.txt, example1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, example0.txt, example1.txt
Case Name Status Exec Time Memory
000.txt AC 74 ms 1780 KB
001.txt AC 27 ms 1020 KB
002.txt AC 38 ms 1144 KB
003.txt AC 43 ms 1656 KB
004.txt AC 112 ms 2932 KB
005.txt AC 122 ms 2932 KB
006.txt AC 125 ms 2932 KB
007.txt AC 122 ms 2932 KB
008.txt AC 125 ms 2932 KB
009.txt AC 123 ms 2932 KB
010.txt AC 126 ms 2932 KB
011.txt AC 122 ms 2932 KB
example0.txt AC 1 ms 256 KB
example1.txt AC 1 ms 256 KB