Submission #142880

# Submission time Handle Problem Language Result Execution time Memory
142880 2019-08-12T00:14:11 Z Ort San (COCI17_san) C++11
0 / 120
1000 ms 376 KB
#include<bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
#define MEM(a, b) memset(a, (b), sizeof(a))
#define ALL(c) (c).begin(),(c).end()
#define ll long long
#define LINF (ll)1e18
#define INF (int)1e9
#define pb push_back
#define sz(a) ((int)(a.size()))
#define mp make_pair
#define MOD 1000000007
#define IO ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0)
#define watch(x) cout << (#x) << " is " << (x) << endl
#define MAX 200005
#define N 21

using namespace __gnu_pbds;
using namespace std;

typedef tree<int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

int n, fh, sh;
ll k, hi, gi, sol, curr, sum, lstc;
ll h[N], g[N];
vector<ll> t[N];

bool flag;

int main() {
	cin >> n >> k;
	fh = n>>1;
	sh = n-fh;
	for(int i=0;i<n;i++) cin >> h[i] >> g[i];
	for(int i=1;i<(1<<fh);i++) {
		curr = 0; sum = 0; flag = 0; lstc = -1;
		for(int j=0;j<fh;j++)
			if((i>>j)&1) {
				if(h[j]>=curr) curr = h[j], sum += g[j], lstc = j;
				else {flag = 1; break;}
			}
		if(sum>=k && !flag) sol++;
		if(flag) continue;
		t[lstc].pb(sum);
	}
	for(int i=1;i<(1<<sh);i++) {
		curr = -1; sum = 0; flag = 0; lstc = -1;
		for(int j=0;j<sh;j++)
			if((i>>j)&1) {
				if(lstc==-1) lstc = h[j+fh];
				if(h[j+fh]>=curr) curr = h[j+fh], sum += g[j+fh];
				else {flag = 1; break;}
			}
		if(sum>=k && !flag) sol++;
		if(flag) continue;
		for(int j=0;j<fh;j++) {
			if(h[j]<=lstc) sol += (t[j].end() - lower_bound(ALL(t[j]),k-sum));
		}
	}
	cout << sol;
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB Output is correct
2 Incorrect 2 ms 256 KB Output isn't correct
# Verdict Execution time Memory Grader output
1 Execution timed out 1050 ms 376 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1063 ms 256 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1049 ms 256 KB Time limit exceeded
2 Halted 0 ms 0 KB -