結果

問題 No.1532 Different Products
ユーザー HaaHaa
提出日時 2021-06-04 21:26:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 4,000 ms
コード長 1,055 bytes
コンパイル時間 1,988 ms
コンパイル使用メモリ 185,540 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-11-19 12:24:20
合計ジャッジ時間 13,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 50 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 68 ms
6,820 KB
testcase_11 AC 56 ms
6,820 KB
testcase_12 AC 149 ms
9,856 KB
testcase_13 AC 114 ms
6,816 KB
testcase_14 AC 239 ms
17,280 KB
testcase_15 AC 4 ms
6,816 KB
testcase_16 AC 63 ms
10,880 KB
testcase_17 AC 62 ms
6,816 KB
testcase_18 AC 49 ms
6,820 KB
testcase_19 AC 147 ms
8,576 KB
testcase_20 AC 247 ms
15,360 KB
testcase_21 AC 89 ms
12,288 KB
testcase_22 AC 102 ms
6,824 KB
testcase_23 AC 67 ms
6,816 KB
testcase_24 AC 224 ms
14,592 KB
testcase_25 AC 125 ms
10,368 KB
testcase_26 AC 19 ms
6,820 KB
testcase_27 AC 122 ms
14,592 KB
testcase_28 AC 85 ms
9,728 KB
testcase_29 AC 99 ms
16,256 KB
testcase_30 AC 158 ms
17,280 KB
testcase_31 AC 158 ms
16,512 KB
testcase_32 AC 181 ms
16,896 KB
testcase_33 AC 151 ms
15,872 KB
testcase_34 AC 216 ms
16,000 KB
testcase_35 AC 178 ms
16,512 KB
testcase_36 AC 212 ms
17,536 KB
testcase_37 AC 78 ms
16,384 KB
testcase_38 AC 222 ms
16,768 KB
testcase_39 AC 201 ms
16,000 KB
testcase_40 AC 202 ms
16,256 KB
testcase_41 AC 285 ms
16,896 KB
testcase_42 AC 255 ms
16,768 KB
testcase_43 AC 260 ms
16,640 KB
testcase_44 AC 287 ms
17,536 KB
testcase_45 AC 285 ms
17,536 KB
testcase_46 AC 278 ms
17,536 KB
testcase_47 AC 280 ms
17,536 KB
testcase_48 AC 283 ms
17,536 KB
testcase_49 AC 285 ms
17,536 KB
testcase_50 AC 285 ms
17,536 KB
testcase_51 AC 287 ms
17,536 KB
testcase_52 AC 280 ms
17,536 KB
testcase_53 AC 290 ms
17,536 KB
testcase_54 AC 279 ms
17,536 KB
testcase_55 AC 293 ms
17,536 KB
testcase_56 AC 281 ms
17,664 KB
testcase_57 AC 282 ms
17,536 KB
testcase_58 AC 277 ms
17,536 KB
testcase_59 AC 270 ms
17,536 KB
testcase_60 AC 289 ms
17,536 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 286 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