Submission #1000841


Source Code Expand

#include <bits/stdc++.h>

#define _overload(_1,_2,_3,name,...) name
#define _rep(i,n) _range(i,0,n)
#define _range(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload(__VA_ARGS__,_range,_rep,)(__VA_ARGS__)

#define _rrep(i,n) _rrange(i,n,0)
#define _rrange(i,a,b) for(int i=int(a)-1;i>=int(b);--i)
#define rrep(...) _overload(__VA_ARGS__,_rrange,_rrep,)(__VA_ARGS__)

#define _all(arg) begin(arg),end(arg)
#define uniq(arg) sort(_all(arg)),(arg).erase(unique(_all(arg)),end(arg))
#define getidx(ary,key) lower_bound(_all(ary),key)-begin(ary)
#define clr(a,b) memset((a),(b),sizeof(a))
#define bit(n) (1LL<<(n))
#define popcount(n) (__builtin_popcountll(n))

using namespace std;

template<class T>bool chmax(T &a, const T &b) { return (a<b)?(a=b,1):0;}
template<class T>bool chmin(T &a, const T &b) { return (b<a)?(a=b,1):0;}

using ll=long long;
using R=long double;
const R EPS=1e-9L; // [-1000,1000]->EPS=1e-8 [-10000,10000]->EPS=1e-7
inline int sgn(const R& r){return(r > EPS)-(r < -EPS);}
inline R sq(R x){return sqrt(max(x,0.0L));}

const int dx[8]={1,0,-1,0,1,-1,-1,1};
const int dy[8]={0,1,0,-1,1,1,-1,-1};

// Problem Specific Parameter:

using pii=pair<int,int>;
vector<pii> ary;

const ll mod=1000000007LL;

ll fact[100010];

int main(void){
	int n;
	cin >> n;

	fact[0]=1LL;
	rep(i,1,n+1) fact[i]=1LL*i*fact[i-1]%mod;

	rep(i,n){
		int in;
		cin >> in;
		ary.emplace_back(pii(in,1));
	}

	rep(i,n){
		int in;
		cin >> in;
		ary.emplace_back(pii(in,-1));
	}

	sort(_all(ary));
	ll ans=1LL,cnt=0LL,cmax=0LL;

	for(auto &it:ary){
		cnt+=it.second;

		chmax(cmax,abs(cnt));
		if(cnt==0){
			ans*=fact[cmax],ans%=mod;
			cmax=0LL;
		}
	}

	cout << ans << endl;

	return 0;
}

Submission Info

Submission Time
Task A - 1D Matching
User Hec
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1770 Byte
Status WA
Exec Time 112 ms
Memory 3188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 500
Status
AC × 2
AC × 4
WA × 10
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 WA 71 ms 1912 KB
001.txt WA 26 ms 1020 KB
002.txt WA 35 ms 1148 KB
003.txt WA 39 ms 1656 KB
004.txt WA 99 ms 3060 KB
005.txt WA 111 ms 3188 KB
006.txt WA 111 ms 3188 KB
007.txt WA 111 ms 3188 KB
008.txt WA 112 ms 3188 KB
009.txt WA 111 ms 3188 KB
010.txt AC 111 ms 3188 KB
011.txt AC 111 ms 3188 KB
example0.txt AC 2 ms 256 KB
example1.txt AC 2 ms 256 KB