結果

問題 No.1532 Different Products
ユーザー SSRSSSRS
提出日時 2021-06-04 20:22:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,236 ms / 4,000 ms
コード長 1,133 bytes
コンパイル時間 1,789 ms
コンパイル使用メモリ 176,536 KB
実行使用メモリ 323,536 KB
最終ジャッジ日時 2024-09-26 08:01:03
合計ジャッジ時間 74,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 345 ms
55,124 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 17 ms
6,944 KB
testcase_09 AC 186 ms
31,440 KB
testcase_10 AC 467 ms
74,828 KB
testcase_11 AC 391 ms
61,396 KB
testcase_12 AC 1,071 ms
163,448 KB
testcase_13 AC 772 ms
117,808 KB
testcase_14 AC 1,702 ms
265,752 KB
testcase_15 AC 211 ms
34,760 KB
testcase_16 AC 366 ms
61,648 KB
testcase_17 AC 452 ms
71,636 KB
testcase_18 AC 426 ms
65,488 KB
testcase_19 AC 1,020 ms
156,624 KB
testcase_20 AC 1,734 ms
269,100 KB
testcase_21 AC 575 ms
88,012 KB
testcase_22 AC 708 ms
109,332 KB
testcase_23 AC 555 ms
85,576 KB
testcase_24 AC 1,626 ms
248,316 KB
testcase_25 AC 889 ms
139,216 KB
testcase_26 AC 132 ms
22,864 KB
testcase_27 AC 734 ms
118,352 KB
testcase_28 AC 588 ms
93,908 KB
testcase_29 AC 429 ms
72,400 KB
testcase_30 AC 989 ms
157,392 KB
testcase_31 AC 1,021 ms
160,960 KB
testcase_32 AC 1,198 ms
186,800 KB
testcase_33 AC 894 ms
144,600 KB
testcase_34 AC 1,516 ms
233,684 KB
testcase_35 AC 1,217 ms
185,864 KB
testcase_36 AC 1,473 ms
226,280 KB
testcase_37 AC 210 ms
38,092 KB
testcase_38 AC 1,601 ms
242,192 KB
testcase_39 AC 1,407 ms
215,184 KB
testcase_40 AC 1,422 ms
219,832 KB
testcase_41 AC 2,032 ms
313,948 KB
testcase_42 AC 1,833 ms
280,052 KB
testcase_43 AC 1,906 ms
292,048 KB
testcase_44 AC 2,084 ms
318,136 KB
testcase_45 AC 2,096 ms
318,928 KB
testcase_46 AC 2,068 ms
309,200 KB
testcase_47 AC 2,108 ms
322,448 KB
testcase_48 AC 2,058 ms
318,544 KB
testcase_49 AC 2,109 ms
321,236 KB
testcase_50 AC 2,055 ms
317,948 KB
testcase_51 AC 2,107 ms
321,228 KB
testcase_52 AC 2,087 ms
314,984 KB
testcase_53 AC 2,105 ms
322,444 KB
testcase_54 AC 2,090 ms
315,216 KB
testcase_55 AC 2,236 ms
319,952 KB
testcase_56 AC 2,006 ms
308,816 KB
testcase_57 AC 2,007 ms
311,376 KB
testcase_58 AC 2,052 ms
317,068 KB
testcase_59 AC 1,993 ms
298,964 KB
testcase_60 AC 2,085 ms
323,536 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 2 ms
5,376 KB
testcase_63 AC 2,073 ms
319,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
vector<pair<long long, pair<long long, long long>>> quotient_ranges(long long N){
	vector<pair<long long, pair<long long, long long>>> ans;
	for (long long i = 1; i * i <= N; i++){
		ans.push_back(make_pair(N / i, make_pair(i, i)));
	}
	for (long long i = N / ((long long) sqrt(N) + 1); i >= 1; i--){
		ans.push_back(make_pair(i, make_pair(N / (i + 1) + 1, N / i)));
	}
	return ans;
}
int main(){
  int N;
  long long K;
  cin >> N >> K;
  vector<pair<long long, pair<long long, long long>>> R = quotient_ranges(K);
  reverse(R.begin(), R.end());
  int M = R.size();
  vector<vector<long long>> dp(N + 1, vector<long long>(M, 0));
  dp[0][M - 1] = 1;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < M; j++){
      dp[i + 1][j] += dp[i][j];
      long long x = R[j].first / (i + 1);
      if (x > 0){
        int p = lower_bound(R.begin(), R.end(), make_pair(x, make_pair((long long) -1, (long long) -1))) - R.begin();
        dp[i + 1][p] += dp[i][j];
      }
    }
  }
  long long ans = 0;
  for (int i = 0; i < M; i++){
    ans += dp[N][i];
  }
  ans--;
  cout << ans << endl;
}
0