結果

問題 No.1825 Except One
ユーザー kabipoyokabipoyo
提出日時 2022-01-28 22:10:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,631 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 208,508 KB
実行使用メモリ 410,240 KB
最終ジャッジ日時 2024-06-09 15:17:58
合計ジャッジ時間 25,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;

int main() {
	lint N;
	cin >> N;
	vi v(N);
	vin(v);

	lint a=0, b=0, c=0, x, y, z;
	std::vector<vvi> dp(N, vvi(101, vi(100*(N+1)+1)));
	std::vector<vvi> t(N, vvi(101, vi(100*(N+1)+1)));
	rep(i, N) {
		t[0][v[i]][v[i]]++;
		rep(j, i) {
			rep(k, 101) {
				rep(l, 100*(j+1)+1) {
					t[j][k][l] += dp[j][k][l];
					if (l+v[i] < 100*(N+1)+1) t[j+1][max((lint)k, v[i])][l+v[i]] += dp[j][k][l];
				}
			}
		}
		swap(dp, t);
		t.clear();
		// rep(j, 5) {
		// 	list(j)
		// 	rep(k, 10) std::cout << dp[i][0][j][k] << ' ';
		// 	std::cout << '\n';
		// }
	}
	repx(j, 1, N) {
		rep(k, 101) {
			rep(l, 100*(j+1)+1) {
				if (l%j != 0) continue;
				if (l/j < k) continue;
				a += dp[j][k][l];
			}
		}
	}
	std::cout << a << '\n';
}
0