# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
282068 | 2020-08-23T23:15:27 Z | diegoangulo5 | Detecting Molecules (IOI16_molecules) | C++14 | 1 ms | 384 KB |
#include "molecules.h" #include <bits/stdc++.h> using namespace std; vector<int> responder(vector<pair<int, int> > x, int a, int b){ vector<int> res; for(;a<=b;a++){ res.push_back(x[a].second); } sort(res.begin(), res.end()); return res; } vector<int> find_subset(int l, int u, vector<int> w) { vector<pair<int, int> >x; for(int a=0;a<w.size();a++){ x.push_back(make_pair(w[a], a)); } sort(x.begin(), x.end()); int a=0, b=0; int sum = x[a].first; int tam = x.size(); while(1){ if(sum >= l && sum <= u){ return responder(x, a, b); } else if(sum > u){ sum -= x[a].first; a++; if(a>b){ b++; sum = x[b].first; } } else if(sum<l){ b++; if(b==tam)return vector<int>(); sum += x[b].first; } } return vector<int>(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Runtime error | 1 ms | 384 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
2 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
3 | Correct | 0 ms | 256 KB | OK (n = 12, answer = NO) |
4 | Correct | 0 ms | 256 KB | OK (n = 12, answer = NO) |
5 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
6 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
7 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
8 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
9 | Correct | 0 ms | 256 KB | OK (n = 6, answer = YES) |
10 | Correct | 0 ms | 256 KB | OK (n = 12, answer = YES) |
11 | Correct | 0 ms | 256 KB | OK (n = 100, answer = NO) |
12 | Correct | 0 ms | 256 KB | OK (n = 100, answer = YES) |
13 | Correct | 0 ms | 256 KB | OK (n = 100, answer = NO) |
14 | Correct | 0 ms | 256 KB | OK (n = 100, answer = YES) |
15 | Correct | 1 ms | 256 KB | OK (n = 100, answer = YES) |
16 | Correct | 0 ms | 256 KB | OK (n = 100, answer = YES) |
17 | Correct | 1 ms | 256 KB | OK (n = 100, answer = YES) |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Runtime error | 1 ms | 384 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Runtime error | 1 ms | 384 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Runtime error | 1 ms | 384 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 256 KB | OK (n = 1, answer = NO) |
2 | Runtime error | 1 ms | 384 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |