답안 #631199

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
631199 2022-08-17T19:39:16 Z epicci23 San (COCI17_san) C++17
24 / 120
84 ms 9016 KB
#include "bits/stdc++.h"
using namespace std;
#define pb push_back
#define ff first
#define ss second
#define endl "\n" 
#define MOD 1000000007
#define int long long
#define double long double
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define what_is(x) cerr << #x << " is " << x << endl;
const int N=200005;
const long long INF = LLONG_MAX;
const int INF2=(int)1e18;
const int LOG=20;
typedef pair<int,int> pii;
typedef tuple<int,int,int> tp;
typedef priority_queue<pii,vector<pii>,greater<pii>> min_pq;
typedef priority_queue<pii> max_pq;
typedef long long ll;
//sunlari dusun//
/*
 * kodu kisaltcak  fonksiyon
 * cevaba binary search ya da normal bs
 * segment tree / sparse table
 * stack
 * teklik ciftlik
 * precomputation
 * EN ONEMLISI OVERKILLEME
 * edge case dusunr
 * constraintlere bak
 * indisleri kontrol et 
 * dp
 * greedy
 * sorting
 * dfs bfs
 * sieve
*/



int n,k;
pii arr[45];
vector<int> v[45];
bool vis[(1LL<<22)];
int cnt=0;
void f(int ind,int mask,int last,int sum)
{
   if(!vis[mask])
   {
     vis[mask]=1;
     for(int i=n/2;i<=n;i++)
     {
        if(last==0 || arr[last].ff<=arr[i].ff)
        {
           if(sum>=k) cnt+=sz(v[i]);
           else
           {
             int need=k-sum;
             int it=lower_bound(all(v[i]),need)-v[i].begin();
             cnt+=sz(v[i])-it;
           }
        }
     }
   }
   if(ind==n/2) return;
   if(last==0 || arr[ind].ff>=arr[last].ff) f(ind+1,mask|(1LL<<ind),ind,sum+arr[ind].ss);
   f(ind+1,mask,last,sum);
}


void solve()
{
    cin >> n >> k;
    for(int i=1;i<=n;i++) cin >> arr[i].ff >> arr[i].ss;
    for(int i=n;i>=n/2;i--)
    {
        v[i].pb(arr[i].ss);
        for(int j=i+1;j<=n;j++)
        {
          if(arr[i].ff <= arr[j].ff)
          {
            for(int x:v[j]) v[i].pb(x+arr[i].ss);
          }
        }
        sort(all(v[i]));
    }
    f(1,0,0,0);
    cout << cnt << endl;
}

int32_t main(){
   

     cin.tie(0); ios::sync_with_stdio(0);
     cout << fixed <<  setprecision(15);
 int t=1;//cin>> t;
 
 while(t--) solve();
 
 return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 332 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
2 Correct 1 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 1552 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 3016 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 84 ms 9016 KB Output isn't correct
2 Halted 0 ms 0 KB -