Submission #895410

#TimeUsernameProblemLanguageResultExecution timeMemory
895410Richw818Intercastellar (JOI22_ho_t1)C++17
100 / 100
54 ms7848 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr);
  int n;
  cin >> n;
  queue<pair<int, int>> q;
  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    int tz = __builtin_ctz(a);
    q.emplace(a >> tz, 1 << tz);
  }
  int qq;
  cin >> qq;
  long long prev = 0;
  while (qq--) {
    long long x;
    cin >> x;
    long long y = x;
    x -= prev;
    while (x > q.front().second) {
      x -= q.front().second;
      q.pop();
    }
    prev = y;
    cout << q.front().first << '\n';
    q.front().second -= x;
  }
  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...