#67

by asd

Submitted 4 years 2 months 1 day ago
Tue Feb 04 20:07:37 CST 2020
Judger: ZJS
Dataset Version: v0

0 ms / 0 KB
Final 0
Problem: lss2.glove
Language: GNU C++ 11


#include <bits/stdc++.h>
using namespace std;
int n;
int a[25],b[25],l,r;
int main(){
	int n;
	cin>>n;
	for(int i=0;i<n;i++){
		cin>>a[i];
	}
	for(int i=0;i<n;i++){
		cin>>b[i];
	}
	cin>>l>>r;
	for(int i=0;i<(1<<n);i++){
		int x=0,y=0;
		for(int j=0;j<n;j++){
			if(i&(1<<j)){
				x+=a[j];
			}else{
				y+=b[j];
			}
		}
		
		if(!(l>x || r>y)){
			cout<<"NO"<<endl;
			return 0;
		}
	}
	cout<<"YES"<<endl;
	
} 
Judge failed:java.io.FileNotFoundException: data/lss2_glove/checker (No such file or directory)