답안 #233816

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
233816 2020-05-21T19:37:00 Z jam_xd_ Detecting Molecules (IOI16_molecules) C++17
0 / 100
4 ms 256 KB
#include "molecules.h"
#include "bits/stdc++.h"

using namespace std;

vector<int> find_subset(int l, int u, vector<int> w) {

int gg = w[0], funcionaaa = w.size(), sum = 0;
bool afirmo;

vector<int>covid;
vector<int>nada;

if(l == u and  w[0]!= l or gg * funcionaaa < min(l,u))return nada;
	else{ 
		int guardar = 1;

		for(int i=0; i<funcionaaa; i++){
			sum = sum + gg;
			covid.push_back(guardar);
			guardar++;

			if(sum >= min(l,u) and sum <= max(l,u)){
				afirmo = true;
				break;
			}
			if(sum > max(l,u))break;

		}
		if(afirmo == true)return covid;
		else return nada;
	}

}
//:v  ??

Compilation message

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:14:11: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
 if(l == u and  w[0]!= l or gg * funcionaaa < min(l,u))return nada;
    ~~~~~~~^~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB OK (n = 1, answer = NO)
2 Incorrect 4 ms 256 KB Integer 1 violates the range [0, 0]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 256 KB sum of weights should be in [302..304] but it is 352
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB OK (n = 1, answer = NO)
2 Incorrect 4 ms 256 KB Integer 1 violates the range [0, 0]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB OK (n = 1, answer = NO)
2 Incorrect 4 ms 256 KB Integer 1 violates the range [0, 0]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB OK (n = 1, answer = NO)
2 Incorrect 4 ms 256 KB Integer 1 violates the range [0, 0]
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 256 KB OK (n = 1, answer = NO)
2 Incorrect 4 ms 256 KB Integer 1 violates the range [0, 0]
3 Halted 0 ms 0 KB -