Submission #1000816


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;

inline ll power(ll a,ll n){
	ll b=1LL;
	while(n){
		if(n&1) b=b*a%mod;
		a=a*a%mod;
		n>>=1;
	}
	return b;
}

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

	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*=power(2LL,cmax-1),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 1816 Byte
Status WA
Exec Time 115 ms
Memory 2548 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 500
Status
AC × 2
AC × 3
WA × 11
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 68 ms 1400 KB
001.txt WA 26 ms 892 KB
002.txt WA 35 ms 892 KB
003.txt WA 39 ms 1400 KB
004.txt WA 99 ms 2420 KB
005.txt WA 111 ms 2420 KB
006.txt WA 111 ms 2420 KB
007.txt WA 111 ms 2420 KB
008.txt WA 115 ms 2420 KB
009.txt WA 110 ms 2548 KB
010.txt WA 112 ms 2420 KB
011.txt AC 111 ms 2420 KB
example0.txt AC 3 ms 256 KB
example1.txt AC 3 ms 256 KB