結果

問題 No.3055 2019(注:異常な難易度です)
ユーザー e869120e869120
提出日時 2019-04-01 18:56:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 1,491 bytes
コンパイル時間 829 ms
コンパイル使用メモリ 78,460 KB
実行使用メモリ 27,760 KB
最終ジャッジ日時 2024-11-25 22:48:48
合計ジャッジ時間 4,744 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
12,972 KB
testcase_01 AC 5 ms
12,996 KB
testcase_02 AC 4 ms
12,980 KB
testcase_03 AC 5 ms
12,996 KB
testcase_04 AC 5 ms
12,948 KB
testcase_05 AC 5 ms
13,072 KB
testcase_06 AC 4 ms
12,980 KB
testcase_07 AC 4 ms
13,048 KB
testcase_08 AC 4 ms
13,016 KB
testcase_09 AC 4 ms
13,060 KB
testcase_10 AC 5 ms
13,084 KB
testcase_11 AC 5 ms
12,912 KB
testcase_12 AC 5 ms
13,084 KB
testcase_13 AC 4 ms
13,032 KB
testcase_14 AC 5 ms
13,000 KB
testcase_15 AC 5 ms
12,912 KB
testcase_16 AC 4 ms
12,984 KB
testcase_17 AC 4 ms
13,056 KB
testcase_18 AC 4 ms
13,028 KB
testcase_19 AC 4 ms
13,096 KB
testcase_20 AC 3 ms
12,972 KB
testcase_21 AC 4 ms
12,908 KB
testcase_22 AC 4 ms
13,040 KB
testcase_23 AC 4 ms
13,080 KB
testcase_24 AC 5 ms
13,028 KB
testcase_25 AC 4 ms
13,052 KB
testcase_26 AC 5 ms
12,968 KB
testcase_27 AC 5 ms
12,908 KB
testcase_28 AC 4 ms
12,988 KB
testcase_29 AC 4 ms
12,980 KB
testcase_30 AC 5 ms
12,888 KB
testcase_31 AC 4 ms
12,880 KB
testcase_32 AC 3 ms
13,076 KB
testcase_33 AC 5 ms
13,016 KB
testcase_34 AC 5 ms
12,908 KB
testcase_35 AC 4 ms
12,932 KB
testcase_36 AC 5 ms
13,012 KB
testcase_37 AC 4 ms
13,020 KB
testcase_38 AC 5 ms
12,868 KB
testcase_39 AC 5 ms
13,064 KB
testcase_40 AC 4 ms
13,140 KB
testcase_41 AC 4 ms
12,992 KB
testcase_42 AC 4 ms
12,984 KB
testcase_43 AC 4 ms
12,892 KB
testcase_44 AC 4 ms
13,060 KB
testcase_45 AC 4 ms
12,992 KB
testcase_46 AC 4 ms
13,004 KB
testcase_47 AC 4 ms
12,880 KB
testcase_48 AC 5 ms
13,104 KB
testcase_49 AC 4 ms
12,944 KB
testcase_50 AC 4 ms
13,056 KB
testcase_51 AC 4 ms
12,932 KB
testcase_52 AC 4 ms
13,060 KB
testcase_53 AC 4 ms
13,020 KB
testcase_54 AC 5 ms
13,096 KB
testcase_55 AC 5 ms
13,116 KB
testcase_56 AC 6 ms
13,192 KB
testcase_57 AC 5 ms
13,180 KB
testcase_58 AC 5 ms
13,272 KB
testcase_59 AC 6 ms
13,088 KB
testcase_60 AC 6 ms
13,236 KB
testcase_61 AC 6 ms
13,176 KB
testcase_62 AC 6 ms
13,284 KB
testcase_63 AC 6 ms
13,264 KB
testcase_64 AC 8 ms
13,256 KB
testcase_65 AC 9 ms
13,308 KB
testcase_66 AC 9 ms
13,200 KB
testcase_67 AC 10 ms
13,316 KB
testcase_68 AC 11 ms
13,320 KB
testcase_69 AC 12 ms
13,368 KB
testcase_70 AC 13 ms
13,364 KB
testcase_71 AC 13 ms
13,428 KB
testcase_72 AC 12 ms
13,444 KB
testcase_73 AC 17 ms
13,816 KB
testcase_74 AC 23 ms
14,112 KB
testcase_75 AC 26 ms
14,504 KB
testcase_76 AC 29 ms
14,588 KB
testcase_77 AC 32 ms
14,892 KB
testcase_78 AC 38 ms
15,076 KB
testcase_79 AC 37 ms
16,284 KB
testcase_80 AC 41 ms
16,648 KB
testcase_81 AC 46 ms
15,636 KB
testcase_82 AC 67 ms
17,512 KB
testcase_83 AC 90 ms
20,336 KB
testcase_84 AC 101 ms
20,052 KB
testcase_85 AC 118 ms
21,072 KB
testcase_86 AC 134 ms
22,316 KB
testcase_87 AC 146 ms
23,812 KB
testcase_88 AC 158 ms
24,372 KB
testcase_89 AC 174 ms
25,768 KB
testcase_90 AC 182 ms
27,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
using namespace std;
#pragma warning (disable: 4996)

long long N, dp[2009][609], t[609];

void getsum(long long dig, long long l, long long r) {
	for (int i = 0; i <= 600; i++) t[i] = 0;
	for (int i = 0; i < 2009; i++) { for (int j = 0; j < 609; j++) dp[i][j] = 0; }
	dp[0][0] = 1;
	for (int i = 0; i <= dig; i++) {
		for (int j = 0; j < 609; j++) dp[i + 1][j] = dp[i][j] * 2;
		for (int j = 0; j < 600; j++) {
			dp[i + 1][j + 1] += dp[i + 1][j] / 10;
			dp[i + 1][j] %= 10;
		}
	}

	for (int i = 0; i < dig; i++) {
		if (l <= i && i <= r) continue;
		for (int j = 0; j < 600; j++) t[j] += dp[i][j];
	}
	for (int j = 0; j < 600; j++) {
		t[j + 1] += t[j] / 10;
		t[j] %= 10;
	}

	bool flag = false;
	for (int i = 600; i >= 0; i--) {
		if (t[i] >= 1) flag = true;
		if (flag == true) cout << t[i];
	}
	cout << endl;
}

void solve(long long NN) {
	N = NN;
	for (int i = 1; i <= 2000; i++) {
		long long E = 1LL * (i - 2) * (i - 1) / 2; E += 1LL;
		if (N <= E) {
			vector<pair<int, int>>vec;
			for (int j = 1; j <= i - 2; j++) {
				for (int k = j; k <= i - 2; k++) {
					// 区間 [j, k] について
					vec.push_back(make_pair(k, -j));
				}
			}
			vec.push_back(make_pair(-2000, -2000));
			sort(vec.begin(), vec.end());
			reverse(vec.begin(), vec.end());

			getsum(i, -vec[N - 1].second, vec[N - 1].first);
			return;
		}
		else N -= E;
	}
}

int main() {
	long long T; cin >> T;
	solve(T);
	return 0;
}
0