제출 #525118

#제출 시각아이디문제언어결과실행 시간메모리
525118ali22413836Coins (BOI06_coins)C++14
100 / 100
83 ms8028 KiB
#include <bits/stdc++.h>
#define  endl "\n"
using namespace std ;
typedef long long ll;
typedef long double ld ;
const int N=2e7;
const ll inf=1e18 ;
const ll mod = 1e9 + 7 ;
ll mypower(ll x, ll y){
    if(y == 0) return 1 ;
    if(y == 1) return x ;
    ll ret = mypower(x , y / 2);
    ret = (ret * ret) % mod;
    if(y % 2) ret = ( ret * x ) % mod ;
    return ret ;
}
ll n , k , a[500009] ;
bool vis[500009] ;
int main(){
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    cin >> n >> k ;
    for(int i = 0 ; i < n ;i++){
        cin >> a[i] >> vis[i] ;
    }
    a[n] = k + 1 ;
    ll sum = 0 , ans = 0 ;
    for(int i = 0 ; i  < n ; i++){
        if(vis[i] == 0 && sum + a[i] < a[i + 1]){
            ans++ , sum += a[i] ;
        }
    }
    if(!sum)
        sum = 1 ;
    cout << ans << endl;
    cout << k - sum << endl ;
    return 0 ;
}
#Verdict Execution timeMemoryGrader output
Fetching results...