이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
#define for_(i, s, e) for (int i = s; i < (int) e; i++)
#define for__(i, s, e) for (ll i = s; i < e; i++)
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
#define endl '\n'
const int MXV = 1e3;
int ans[MXV+2];
vi fac[MXV+2];
int main() {
#ifdef shiven
freopen("test.in", "r", stdin);
#endif
ios_base::sync_with_stdio(false);
cin.tie(0);
int m, q; cin >> m >> q;
int mxp = -1;
for_(i, 0, m) {
int p; cin >> p;
fac[p].push_back(p);
mxp = max(mxp, p);
}
vector<ii> last; // {val, nxt}
last.push_back({0, mxp});
int pt = 0;
for_(i, 1, MXV+1) {
if (pt < last.size() and last[pt].second == i) pt++;
if (pt < last.size()) {
ans[i] = ans[last[pt].first]+1;
}
for (int f: fac[i]) {
int nxt = i+f;
if (last.back().second < nxt) last.push_back({i, nxt});
if (nxt <= MXV) fac[nxt].push_back(f);
}
}
for_(i, 0, q) {
int k; cin >> k;
if (!ans[k]) cout << "oo";
else cout << ans[k];
cout << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
brunhilda.cpp: In function 'int main()':
brunhilda.cpp:34:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | if (pt < last.size() and last[pt].second == i) pt++;
| ~~~^~~~~~~~~~~~~
brunhilda.cpp:36:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | if (pt < last.size()) {
| ~~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |