結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
13,076 KB
testcase_01 AC 4 ms
12,860 KB
testcase_02 AC 4 ms
13,020 KB
testcase_03 AC 6 ms
13,036 KB
testcase_04 AC 4 ms
13,108 KB
testcase_05 AC 5 ms
13,000 KB
testcase_06 AC 4 ms
12,968 KB
testcase_07 AC 4 ms
12,964 KB
testcase_08 AC 5 ms
13,008 KB
testcase_09 AC 3 ms
12,988 KB
testcase_10 AC 4 ms
13,056 KB
testcase_11 AC 5 ms
12,988 KB
testcase_12 AC 4 ms
13,160 KB
testcase_13 AC 4 ms
13,136 KB
testcase_14 AC 3 ms
13,088 KB
testcase_15 AC 3 ms
12,984 KB
testcase_16 AC 4 ms
13,072 KB
testcase_17 AC 5 ms
13,176 KB
testcase_18 AC 3 ms
13,052 KB
testcase_19 AC 4 ms
13,040 KB
testcase_20 AC 4 ms
13,112 KB
testcase_21 AC 4 ms
12,852 KB
testcase_22 AC 4 ms
13,072 KB
testcase_23 AC 4 ms
13,076 KB
testcase_24 AC 5 ms
13,052 KB
testcase_25 AC 5 ms
13,012 KB
testcase_26 AC 5 ms
12,952 KB
testcase_27 AC 4 ms
13,016 KB
testcase_28 AC 5 ms
13,084 KB
testcase_29 AC 3 ms
12,976 KB
testcase_30 AC 4 ms
13,052 KB
testcase_31 AC 3 ms
13,008 KB
testcase_32 AC 5 ms
13,112 KB
testcase_33 AC 5 ms
12,964 KB
testcase_34 AC 4 ms
13,092 KB
testcase_35 AC 5 ms
13,112 KB
testcase_36 AC 4 ms
13,008 KB
testcase_37 AC 4 ms
12,996 KB
testcase_38 AC 3 ms
13,052 KB
testcase_39 AC 3 ms
13,008 KB
testcase_40 AC 4 ms
12,984 KB
testcase_41 AC 4 ms
12,988 KB
testcase_42 AC 4 ms
13,000 KB
testcase_43 AC 5 ms
13,176 KB
testcase_44 AC 5 ms
13,064 KB
testcase_45 AC 4 ms
13,016 KB
testcase_46 AC 4 ms
13,036 KB
testcase_47 AC 4 ms
13,020 KB
testcase_48 AC 4 ms
13,080 KB
testcase_49 AC 5 ms
12,912 KB
testcase_50 AC 4 ms
13,192 KB
testcase_51 AC 5 ms
13,104 KB
testcase_52 AC 4 ms
13,144 KB
testcase_53 AC 5 ms
13,068 KB
testcase_54 AC 4 ms
13,036 KB
testcase_55 AC 5 ms
13,116 KB
testcase_56 AC 5 ms
13,096 KB
testcase_57 AC 6 ms
13,228 KB
testcase_58 AC 6 ms
13,268 KB
testcase_59 AC 5 ms
13,116 KB
testcase_60 AC 5 ms
13,292 KB
testcase_61 AC 6 ms
13,316 KB
testcase_62 AC 5 ms
13,252 KB
testcase_63 AC 6 ms
13,284 KB
testcase_64 AC 8 ms
13,244 KB
testcase_65 AC 7 ms
13,232 KB
testcase_66 AC 8 ms
13,412 KB
testcase_67 AC 9 ms
13,320 KB
testcase_68 AC 9 ms
13,488 KB
testcase_69 AC 10 ms
13,412 KB
testcase_70 AC 12 ms
13,540 KB
testcase_71 AC 12 ms
13,680 KB
testcase_72 AC 13 ms
13,544 KB
testcase_73 AC 17 ms
13,860 KB
testcase_74 AC 22 ms
14,108 KB
testcase_75 AC 25 ms
14,556 KB
testcase_76 AC 29 ms
14,840 KB
testcase_77 AC 31 ms
14,844 KB
testcase_78 AC 34 ms
15,388 KB
testcase_79 AC 36 ms
15,232 KB
testcase_80 AC 40 ms
16,228 KB
testcase_81 AC 42 ms
16,220 KB
testcase_82 AC 66 ms
17,504 KB
testcase_83 AC 88 ms
18,832 KB
testcase_84 AC 100 ms
20,112 KB
testcase_85 AC 115 ms
20,996 KB
testcase_86 AC 133 ms
22,056 KB
testcase_87 AC 146 ms
23,868 KB
testcase_88 AC 161 ms
24,244 KB
testcase_89 AC 173 ms
26,544 KB
testcase_90 AC 181 ms
26,588 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