結果

問題 No.1532 Different Products
ユーザー HaaHaa
提出日時 2021-06-04 21:26:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 315 ms / 4,000 ms
コード長 1,055 bytes
コンパイル時間 1,961 ms
コンパイル使用メモリ 185,608 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-04-30 01:37:05
合計ジャッジ時間 14,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 54 ms
6,272 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 24 ms
5,376 KB
testcase_10 AC 74 ms
5,376 KB
testcase_11 AC 60 ms
5,376 KB
testcase_12 AC 161 ms
9,780 KB
testcase_13 AC 120 ms
5,568 KB
testcase_14 AC 264 ms
17,280 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 70 ms
11,008 KB
testcase_17 AC 68 ms
5,376 KB
testcase_18 AC 55 ms
5,376 KB
testcase_19 AC 158 ms
8,448 KB
testcase_20 AC 262 ms
15,360 KB
testcase_21 AC 97 ms
12,288 KB
testcase_22 AC 110 ms
6,016 KB
testcase_23 AC 74 ms
5,376 KB
testcase_24 AC 247 ms
14,720 KB
testcase_25 AC 136 ms
10,368 KB
testcase_26 AC 22 ms
5,376 KB
testcase_27 AC 132 ms
14,720 KB
testcase_28 AC 95 ms
9,728 KB
testcase_29 AC 109 ms
16,256 KB
testcase_30 AC 174 ms
17,280 KB
testcase_31 AC 173 ms
16,640 KB
testcase_32 AC 196 ms
16,896 KB
testcase_33 AC 157 ms
15,744 KB
testcase_34 AC 229 ms
16,128 KB
testcase_35 AC 191 ms
16,512 KB
testcase_36 AC 227 ms
17,536 KB
testcase_37 AC 85 ms
16,256 KB
testcase_38 AC 240 ms
16,640 KB
testcase_39 AC 215 ms
16,000 KB
testcase_40 AC 221 ms
16,256 KB
testcase_41 AC 303 ms
16,896 KB
testcase_42 AC 272 ms
16,896 KB
testcase_43 AC 286 ms
16,640 KB
testcase_44 AC 311 ms
17,536 KB
testcase_45 AC 314 ms
17,664 KB
testcase_46 AC 305 ms
17,664 KB
testcase_47 AC 313 ms
17,536 KB
testcase_48 AC 309 ms
17,536 KB
testcase_49 AC 313 ms
17,536 KB
testcase_50 AC 312 ms
17,664 KB
testcase_51 AC 313 ms
17,536 KB
testcase_52 AC 310 ms
17,664 KB
testcase_53 AC 315 ms
17,664 KB
testcase_54 AC 307 ms
17,664 KB
testcase_55 AC 314 ms
17,536 KB
testcase_56 AC 301 ms
17,664 KB
testcase_57 AC 302 ms
17,536 KB
testcase_58 AC 312 ms
17,536 KB
testcase_59 AC 294 ms
17,664 KB
testcase_60 AC 315 ms
17,664 KB
testcase_61 AC 2 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 311 ms
17,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(ll i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    ll n, k; cin >> n >> k;
    VVI dp(n+10);
    for(ll i=n;i>=1;i--){
        dp[i]=dp[i+1];
        dp[i].push_back(i);
        for(int j=i+1;j<=n;j++){
            dp[i].push_back(i*j);
        }
        sort(ALL(dp[i]));
    }
    unordered_map<ll,ll> mp; mp[1]=1;
    ll ans=0;
    for(ll i=1;i<=n;i++){
        unordered_map<ll,ll> nxmp;
        for(auto p:mp){
            if(p.first*i*(i+1)*(i+2)<=k){
                nxmp[p.first]+=p.second;
                nxmp[p.first*i]+=p.second;
            }
            else{
                ans+=p.second;
                ans+=p.second*(upper_bound(ALL(dp[i]),k/p.first)-dp[i].begin());
            }
        }
        mp=nxmp;
    }
    for(auto p:mp){
        ans+=p.second;
    }
    cout << ans-1 << endl;
    return 0;
}
0