結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | どらら |
提出日時 | 2018-05-19 00:30:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 78 ms / 1,000 ms |
コード長 | 1,048 bytes |
コンパイル時間 | 1,732 ms |
コンパイル使用メモリ | 178,712 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 14:13:09 |
合計ジャッジ時間 | 4,181 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 77 ms
6,812 KB |
testcase_01 | AC | 77 ms
6,944 KB |
testcase_02 | AC | 78 ms
6,940 KB |
testcase_03 | AC | 77 ms
6,944 KB |
testcase_04 | AC | 76 ms
6,940 KB |
testcase_05 | AC | 76 ms
6,940 KB |
testcase_06 | AC | 78 ms
6,940 KB |
testcase_07 | AC | 77 ms
6,944 KB |
testcase_08 | AC | 78 ms
6,940 KB |
testcase_09 | AC | 77 ms
6,940 KB |
testcase_10 | AC | 74 ms
6,944 KB |
testcase_11 | AC | 77 ms
6,940 KB |
testcase_12 | AC | 77 ms
6,940 KB |
testcase_13 | AC | 77 ms
6,944 KB |
testcase_14 | AC | 77 ms
6,940 KB |
testcase_15 | AC | 76 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; map<ll,vector<int>> memo; void make(){ REP(N,1,251){ rep(a,N+1){ rep(b,N+1-a){ int c = N-(a+b); if(c < 0) continue; int sum = a*(a-1)/2 + a*b + b*c; if(0<=sum && sum<=10000){ if(memo.count(sum) == 0) memo[sum] = {a,b,c}; if(memo.size() == 10000) return; } if(sum >= 10000) break; } } } } int main(){ int K; cin >> K; make(); vector<int> ret = memo[K]; cout << ret[0] + ret[1] + ret[2] << endl; vector<int> res; rep(i,ret[0]) res.push_back(1); rep(i,ret[1]) res.push_back(2); rep(i,ret[2]) res.push_back(3); rep(i,res.size()){ if(i>0) cout << " "; cout << res[i]; } cout << endl; return 0; }