이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define sf scanf
#define pf printf
#define ll int
#define ll long long
#define rep(i,x,y) for(int i=x;i<=(y);i++)
#define drep(i,x,y) for(int i=x;i>=(y);i--)
#define pb push_back
#define lb long double
using namespace std;
inline ll in(){ ll x=0,f=1; char ch=getchar(); while(ch<'0'||ch>'9') (ch=='-'?f=-1:1),ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+ch-'0',ch=getchar(); return x*f; }
int n;
ll m,w[45],cnt,ans,p[(1<<24)];
int main(){
n=in(); m=in();
rep(i,1,n) w[i]=in();
sort(w+1,w+1+n);
if(n==1){
pf("%lld\n",(m>=w[1]?2:0));
return 0;
}
int s=n/2-1;
rep(i,0,(1<<s)-1){
ll v=0;
rep(j,0,s-1){
if((i>>j)&1) v+=w[j+1];
if(v>m) break;
}
if(v>m) continue;
p[++cnt]=v;
}
sort(p+1,p+1+cnt);
s=n-s;
rep(i,0,(1<<s)-1){
ll v=0;
rep(j,0,s-1){
if((i>>j)&1) v+=w[j+n/2];
if(v>m) break;
}
if(v>m) continue;
ll d=upper_bound(p+1,p+1+cnt,m-v)-p-1;
// cout<<d<<' '<<p[d]<<" "<<v<<"\n";
ans+=d;
}
pf("%lld\n",ans);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
bobek.cpp:5: warning: "ll" redefined
5 | #define ll long long
|
bobek.cpp:4: note: this is the location of the previous definition
4 | #define ll int
|
bobek.cpp: In function 'int main()':
bobek.cpp:20:10: warning: format '%lld' expects argument of type 'long long int', but argument 2 has type 'int' [-Wformat=]
20 | pf("%lld\n",(m>=w[1]?2:0));
| ~~~^ ~~~~~~~~~~~~~
| | |
| | int
| long long int
| %d
# | 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... |
# | 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... |