# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
287875 |
2020-09-01T05:50:19 Z |
최은수(#5768) |
JOIRIS (JOI16_joiris) |
C++17 |
|
2 ms |
640 KB |
#include<iostream>
#include<vector>
#include<algorithm>
#define ep emplace
#define eb emplace_back
#define fi first
#define se second
#define all(x) (x).begin(),(x).end()
using namespace std;
typedef long long ll;
typedef pair<int,int>pi;
typedef pair<ll,ll>pl;
const int inf=1e9+7;
const ll INF=1e18;
const int mod=inf;
inline int add(int x,int y)
{
return x+y<mod?x+y:x+y-mod;
}
inline int mul(int x,int y)
{
return(int)((ll)x*y%mod);
}
int dp[260][15][1005];
vector<int>lst[15];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n,l;
cin>>n>>l;
vector<int>v(n);
for(int&t:v)
cin>>t;
for(int i=0;i<1<<n;i++)
lst[__builtin_popcount(i)].eb(i);
for(int i=0;i<n;i++)
dp[1<<i][i][0]=1;
for(int le=1;le<n;le++)
{
for(int&t:lst[le])
{
for(int i=0;i<n;i++)
{
if((t>>i&1)==0)
continue;
for(int j=0;j<n;j++)
{
if((t>>j&1)==1)
continue;
int dif=abs(v[i]-v[j]);
int nx=t|(1<<j);
for(int len=dif;len<=l;len++)
dp[nx][j][len]=add(dp[nx][j][len],dp[t][i][len-dif]);
}
}
}
}
int ans=0;
for(int i=0;i<n;i++)
for(int len=0;len<=l;len++)
ans=add(ans,dp[(1<<n)-1][i][len]);
cout<<ans<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
640 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
640 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
640 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |