# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
650713 | Markomafko972 | Detecting Molecules (IOI16_molecules) | C++14 | 1 ms | 304 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
#define X first
#define Y second
#define pb push_back
#define pii pair<int, int>
typedef long long ll;
using namespace std;
const int MOD = 1e9 + 7;
const ll INF = 1e18;
const int OFF = (1 << 20);
int pref[200005];
pair<int, int> p[200005];
vector<int> ispis(int poc, int kr) {
vector<int> sol;
for (int i = poc; i <= kr; i++) {
sol.push_back(p[i].Y);
}
return sol;
}
vector<int> find_subset(int l, int u, vector<int> w) {
reverse(w.begin(), w.end());
w.push_back(0);
reverse(w.begin(), w.end());
for (int i = 0; i < w.size(); i++) {
p[i] = {w[i], i-1};
}
sort(p, p + (int)w.size());
int n = w.size()-1;
for (int i = 1; i < w.size(); i++) {
pref[i] = pref[i-1] + p[i].X;
}
for (int i = 1; i <= n; i++) {
int d = pref[i];
int g = pref[n] - pref[n-i];
if (d >= l && d <= u) return ispis(1, i);
if (g >= l && g <= u) return ispis(n-i+1, n);
if (d < l && g > u) {
for (int j = i+1; j <= n; j++) {
d = d + p[j].X - p[j-i].X;
if (d >= l && d <= u) return ispis(j-i+1, j);
}
}
}
return {0};
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |