Submission #1678897


Source Code Expand

// tzl ak IOI! 
 
#include<bits/stdc++.h>
 
#define HEAP priority_queue
#define rep(i, n) for(int i = 0, _end_ = (n); i < _end_; ++i)
#define per(i, n) for(int i = (n) - 1; i >= 0 ; --i)
#define forn(i, l, r) for(int i = (l), _end_ = (r); i <= _end_; ++i)
#define nrof(i, r, l) for(int i = (r), _end_ = (l); i >= _end_; --i)
#define FOR(a, b) for(auto (a): (b))
#define mp make_pair
#define mt make_tuple
#define pb push_back
#define X first
#define Y second
#define eps 1e-6
#define pi 3.1415926535897932384626433832795
#define SZ(x) (int)x.size()
#define ALL(x) x.begin(), x.end()
#define FILL(a, b) memset((a), (b), sizeof((a)))
#define MCPY(a, b) memcpy((a), (b), sizeof((b)))
 
using namespace std;
 
typedef long long LL;
typedef double flt;
typedef vector<int> vi;
typedef vector<LL> vl;
typedef pair<int,int> pii;
typedef pair<int,LL> pil;
typedef pair<LL,int> pli;
typedef pair<LL,LL> pll;
typedef vector<pil> vil;
typedef vector<pii> vii;
typedef vector<pli> vli;
typedef vector<pll> vll;
 
const int iinf = 1e9 + 7;
const LL linf = 1ll << 60;
const flt dinf = 1e60;
 
template <typename T>
inline void scf(T &x)
{
	bool f = 0; x = 0; char c = getchar();
	while((c < '0' || c > '9') && c != '-') c = getchar();
	if(c == '-') { f = 1; c = getchar(); }
	while(c >= '0' && c <= '9') { x = x * 10 + c - '0'; c = getchar(); }
	if(f) x = -x; return;
}
 
template <typename T1, typename T2>
void scf(T1 &x, T2 &y) { scf(x); return scf(y); }
 
template <typename T1, typename T2, typename T3>
void scf(T1 &x, T2 &y, T3 &z) { scf(x); scf(y); return scf(z); }
 
template <typename T1, typename T2, typename T3, typename T4>
void scf(T1 &x, T2 &y, T3 &z, T4 &w) { scf(x); scf(y); scf(z); return scf(w); }
 
inline char mygetchar(){ char c = getchar(); while(c == ' ' || c == '\n') c = getchar(); return c; }
 
template <typename T>
void chkmax(T &x, const T &y){ if(y > x) x = y; return; }
 
template <typename T>
void chkmin(T &x, const T &y){ if(y < x) x = y; return; }
 
#ifdef ONLINE_JUDGE
#define debug(x,c) ;
#else
#define DEBUG
#define debug(x,c) cerr<<#x<<"="<<x<<c;
#endif
 
void TZL();
 
void RANK1();
 
#define tzl int
#define ak main
#define IOI ()
tzl ak IOI
{
#undef tzl
#undef ak
#undef IOI
 
	TZL();
	RANK1();
 
#define tzl return
#define caisi 0
#define myy ;
	tzl caisi myy
#undef tzl
#undef caisi
#undef myy
}
 
//---------------------------head----------------------------
 
const int mod = 1e9 + 7;
const int N = 2e5 + 100;
 
int mn1, mn2, rem1, rem2;
int n, X, Y;
int col[N], w[N];
vi all;
 
struct color
{
	int mn, mx, cnt;
	vi apr;
 
	void init()
	{
		cnt = 0, mx = 0, mn = iinf;
		for(int i: apr)
		{
			chkmin(mn, w[i]);
			chkmax(mx, w[i]);
		}
		return;
	}
 
	void work(int o_mn)
	{
		for(int i: apr)
		{
			int w = ::w[i];
			if(w + mn <= X || w + o_mn <= Y) ++cnt;
		}
		return;
	}
}a[N];
 
int fac[N], ifac[N];
 
int pow_mod(int x, int n)
{
	int ret = 1;
	while(n)
	{
		if(n & 1) ret = 1ll * ret * x % mod;
		x = 1ll * x * x % mod;
		n >>= 1;
	}
	return ret;
}
 
int C(int n, int m)
{
	if(n < m || n < 0 || m < 0) return 0;
	return 1ll * fac[n] * ifac[m] % mod * ifac[n - m] % mod;
}
 
void TZL()
{
	scf(n, X, Y);
	forn(i, 1, n) scf(col[i], w[i]);
	forn(i, 1, n) a[col[i]].apr.pb(i), all.pb(col[i]);
	sort(ALL(all)); all.resize(unique(ALL(all)) - all.begin());
	for(int c: all) a[c].init();
 
	mn1 = iinf, mn2 = iinf;
	for(int c: all)
	{
		int mn = a[c].mn;
		if(mn < mn1) mn2 = mn1, rem2 = rem1, mn1 = mn, rem1 = c;
		else if(mn < mn2) mn2 = mn, rem2 = c;
	}
 
	for(int c: all)
	{
		if(c == rem1) a[c].work(mn2); else a[c].work(mn1);
	}
	
	fac[0] = 1;
	forn(i, 1, n) fac[i] = 1ll * i * fac[i - 1] % mod;
	forn(i, 0, n) ifac[i] = pow_mod(fac[i], mod - 2);
	return;
}
 
vi lft;
 
void RANK1()
{
	int sum = 0, ans = 1;
	for(int c: all)
	{
		int o_mn;
		if(c == rem1) o_mn = mn2; else o_mn = mn1;
		if(o_mn + a[c].mn <= Y) lft.pb(a[c].cnt), sum += a[c].cnt;
	}
 
	for(int x: lft)
	{
		ans = 1ll * ans * C(sum, x) % mod;
		sum -= x;
	}
	printf("%d\n", ans);
	return;
}

Submission Info

Submission Time
Task D - Colorful Balls
User OMTWOCZWEIXVI
Language C++14 (GCC 5.4.1)
Score 1000
Code Size 4197 Byte
Status AC
Exec Time 108 ms
Memory 17268 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1000 / 1000
Status
AC × 3
AC × 57
Set Name Test Cases
Sample 00_example_01.txt, 00_example_02.txt, 00_example_03.txt
All 00_example_01.txt, 00_example_02.txt, 00_example_03.txt, 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt, 52.txt, 53.txt, 54.txt
Case Name Status Exec Time Memory
00_example_01.txt AC 4 ms 8960 KB
00_example_02.txt AC 4 ms 8960 KB
00_example_03.txt AC 4 ms 8960 KB
01.txt AC 4 ms 8960 KB
02.txt AC 4 ms 8960 KB
03.txt AC 7 ms 9088 KB
04.txt AC 4 ms 8960 KB
05.txt AC 5 ms 9088 KB
06.txt AC 4 ms 8960 KB
07.txt AC 45 ms 11768 KB
08.txt AC 4 ms 8960 KB
09.txt AC 23 ms 10236 KB
10.txt AC 17 ms 9724 KB
11.txt AC 4 ms 8960 KB
12.txt AC 4 ms 8960 KB
13.txt AC 7 ms 9216 KB
14.txt AC 4 ms 8960 KB
15.txt AC 22 ms 10492 KB
16.txt AC 46 ms 11768 KB
17.txt AC 10 ms 9344 KB
18.txt AC 20 ms 9852 KB
19.txt AC 38 ms 11000 KB
20.txt AC 102 ms 16756 KB
21.txt AC 99 ms 16756 KB
22.txt AC 108 ms 16116 KB
23.txt AC 106 ms 16884 KB
24.txt AC 102 ms 16116 KB
25.txt AC 101 ms 16756 KB
26.txt AC 105 ms 16884 KB
27.txt AC 101 ms 15988 KB
28.txt AC 101 ms 16884 KB
29.txt AC 104 ms 16756 KB
30.txt AC 100 ms 15988 KB
31.txt AC 107 ms 16884 KB
32.txt AC 108 ms 16244 KB
33.txt AC 107 ms 16884 KB
34.txt AC 90 ms 16116 KB
35.txt AC 72 ms 13300 KB
36.txt AC 84 ms 13684 KB
37.txt AC 74 ms 13304 KB
38.txt AC 71 ms 13044 KB
39.txt AC 76 ms 13172 KB
40.txt AC 94 ms 16884 KB
41.txt AC 95 ms 17140 KB
42.txt AC 94 ms 17140 KB
43.txt AC 95 ms 16500 KB
44.txt AC 97 ms 17268 KB
45.txt AC 95 ms 16628 KB
46.txt AC 99 ms 17140 KB
47.txt AC 62 ms 12908 KB
48.txt AC 64 ms 12908 KB
49.txt AC 64 ms 12908 KB
50.txt AC 67 ms 15856 KB
51.txt AC 67 ms 15472 KB
52.txt AC 62 ms 12912 KB
53.txt AC 63 ms 12912 KB
54.txt AC 64 ms 12912 KB