제출 #1063160

#제출 시각아이디문제언어결과실행 시간메모리
1063160vjudge1운세 보기 2 (JOI14_fortune_telling2)C++17
4 / 100
3053 ms2064 KiB
#include<bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll, ll> ii;
typedef vector<ll> vll;
typedef pair<long long, long long> pll;
typedef pair<char, ll> ci;
typedef pair<string, ll> si;
typedef long double ld;
typedef vector<ll> vi;
typedef vector<string> vs;
#define pb push_back
#define fi first
#define se second
#define whole(v) v.begin(), v.end()
#define rwhole(v) v.rbegin(), v.rend()
#define inf INT_MAX/2
#define fro front

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    ll n, k; cin >> n >> k;
    vector<ii> x(n);
    for(ll i = 0; i < n; ++i){
        cin >> x[i].fi >> x[i].se;
    }
    vector<ll> que;
    for(ll i = 0; i < k; ++i){
        ll a; cin >> a;
        que.pb(a);
    }
    int arr[n];
    memset(arr, 0, sizeof arr);
    for(auto e:que){
        for(int i = 0; i < n; ++i){
            if(arr[i] % 2 == 0){
                if(x[i].fi <= e){
                    arr[i]++;
                }
            }else{
                if(x[i].se <= e){
                    arr[i]++;
                }
            }
        }
    }
    ll cnt = 0;
    for(int i = 0; i < n; ++i){
        if(arr[i] % 2 == 0){
            cnt += x[i].fi;
        }else{
            cnt += x[i].se;
        }
    }
    cout << cnt << endl;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...