답안 #755868

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
755868 2023-06-10T17:04:00 Z vjudge1 A Huge Tower (CEOI10_tower) C++17
30 / 100
1000 ms 262144 KB
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
#define vi vector<int>
#define vl vector<long long>
#define vii vector<pair<int,int>>
#define vll vector<pair<long long,long long>>
#define pb push_back
#define ll long long
#define ld long double
#define nl '\n'
#define boost ios::sync_with_stdio(false)
#define mp make_pair
#define se second
#define fi first
#define fore(i, y) for(ll i = 0; i < y; i++)
#define forr(i,x,y) for(int i = x;i<=y;i++)
#define forn(i,y,x) for(ll i = y; i >= x; i--)
#define all(v) v.begin(),v.end()
#define sz(v) v.size()
#define clr(v,k) memset(v,k,sizeof(v))
#define rall(v) v.rbegin() , v.rend()
#define pii pair<int,int>
#define pll pair<ll , ll>

const ll MOD = 1e9 + 9;
const ll INF = 1e18 + 1;

ll gcd(ll a , ll b) {return b ? gcd(b , a % b) : a ;} // greatest common divisor (PGCD)
ll lcm(ll a , ll b) {return a * (b / gcd(a , b));} // least common multiple (PPCM)

// HERE IS THE SOLUTION
vi s;
int n , d;
vector<vi> adj;
vector<vi> dp;
int k;
int calc(int cur, int mask)
{
    if(cur==k)
    {
        if(mask==(1<<k))
        {
            return 1;
        }
        else{
            return 0;
        }
    }
    if(!(mask & (1<<k)))
    {
        return 0;
    }
    if(dp[cur][mask]!=-1)
    {
        return dp[cur][mask];
    }
    int ans=0;
    for(auto prev:adj[cur])
    {
        if(mask & (1<<prev))
        {
            (ans += calc(prev, mask^(1 << cur)))%=MOD;
        }
    }
    return dp[cur][mask]=ans;
}
int main()
{
    cin.tie(0);
    cout.tie(0);
    boost;
    cin>>n>>d;
    s.assign(n , 0);
    dp.assign(n , vi((1<<n) , -1));
    fore(i , n)
    {
        cin>>s[i];
    }
    adj.assign(n ,  {});
    int res = 0;
    forr(i , 0 , n-1)
    {
        forr(j , 0 , n-1)
        {
            if(i == j)continue;
            if(s[j] <= d + s[i])
            {
                adj[j].pb(i);
            }
        }
    }
    fore(i , n)
    {
        fore(j , n)
        {
            if(i == j)continue;
            k = j;
            (res+=calc(i , (1<<n) - 1))%=MOD;
            dp.clear();
            dp.assign(n , vi((1<<n) , -1));
        }
    }
    cout<<res<<nl;
}

# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 16 ms 532 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 21 ms 756 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 745 ms 2464 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1075 ms 9608 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1079 ms 41428 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 661 ms 2388 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1077 ms 9572 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 108 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 166 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 97 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 170 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 224 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 107 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 99 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 112 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 100 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 818 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -