[Codeforces] 1480B. The Great Hero explained

less than 1 minute read

title image

Problem

1480B. The Great Hero

Approach

Condition to say YES:

\[^{\exists i} ( B - \sum_{k=1}^n (\lceil{\frac{b[k]}{A}}\rceil \cdot a[k]) \gt - a[i] )\]

Code

/**
 * author: jooncco
 * written: 2021. 3. 16. Tue. 22:20:10 [UTC+9]
 **/

#include <iostream>
#include <iomanip>
#include <algorithm>
#include <string>
#include <string.h>
#include <vector>
#include <deque>
#include <queue>
#include <set>
#include <cmath>
using namespace std;

#define FAST_IO ios_base::sync_with_stdio(0),cin.tie(0)
typedef long long ll;
typedef pair<ll,ll> ii;
typedef vector<int> vi;
typedef deque<int> di;
typedef deque<ii> dii;

ll t,n,A,B,a[100010],b[100010];

int main() {

    FAST_IO;
    cin >> t;
    while (t--) {
        cin >> A >> B >> n;
        for (int i=0; i < n; ++i) cin >> a[i];
        for (int i=0; i < n; ++i) cin >> b[i];
        for (int i=0; i < n; ++i) {
            B -= (b[i]+A-1)/A*a[i];
        }
        bool yes= 0;
        for (int i=0; i < n; ++i) {
            if (B > -a[i]) yes= 1;
        }
        cout << (yes ? "YES\n":"NO\n");
    }
}

Complexity

  • Time: \(O(n)\)
  • Space: \(O(n)\)

Updated:

Leave a comment