# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1001835 | ayankarimova | Detecting Molecules (IOI16_molecules) | C++14 | 296 ms | 65536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "molecules.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
std::vector<int> find_subset(int l, int u, std::vector<int> w) {
vector<int>ans;
map<ll, ll>mp;
map<ll, vector<ll>>mp1;
for(int i=0; i<w.size(); i++){
mp[w[i]]++;
mp1[w[i]].push_back(i);
}
for(auto i:mp){
ll num=(l+i.first-1)/i.first;
if(num<=i.second && num*i.first<=u){
for(int j=1; j<=num; j++){
ans.push_back(i.first);
}
//cout<<1<<endl;
return ans;
}
if(mp[i.first+1]){
ll cur=l-i.second*i.first;
ll num1=(cur+(i.first+1)-1)/(i.first+1);
if(num1<=mp[i.first+1] && i.second*i.first+num1*(i.first+1)<=u){
for(auto j:mp1[i.first]){
ans.push_back(j);
if(ans.size()==i.second) break;
}
for(auto j:mp1[i.first+1]){
ans.push_back(j);
if(ans.size()==i.second+num1) break;
}
//cout<<2<<endl;
sort(ans.begin(), ans.end());
return ans;
}
}
if(mp[i.first-1]){
ll cur=l-i.second*i.first;
ll num1=(cur+(i.first-1)-1)/(i.first-1);
if(num1<=mp[i.first-1] && i.second*i.first+num1*(i.first-1)<=u){
for(auto j:mp1[i.first]){
ans.push_back(j);
if(ans.size()==i.second) break;
}
for(auto j:mp1[i.first-1]){
ans.push_back(j);
if(ans.size()==i.second+num1) break;
}
//cout<<2<<endl;
sort(ans.begin(), ans.end());
return ans;
}
}}
return ans;
}
/*
{} []
7
13 14
2 2 3 3 3 4 4
*/
컴파일 시 표준 에러 (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... |