結果
問題 | No.2339 Factorial Paths |
ユーザー | ぷら |
提出日時 | 2022-09-11 04:36:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,111 bytes |
コンパイル時間 | 2,197 ms |
コンパイル使用メモリ | 207,484 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 04:14:54 |
合計ジャッジ時間 | 6,211 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; if(N == 1) { cout << "1 1" << endl; cout << "." << endl; return 0; } vector<pair<int,int>>tmp; while(N > 1) { int n = N; tmp.push_back({(n+1)/2+1,n/2+1}); n /= 2; while (n > 1) { tmp.push_back({(n+1)/2+1,n/2+1}); n = (n+1)/2; } N = (N+1)/2; } int sum1 = 0,sum2 = 0; for(int i = 0; i < tmp.size(); i++) { sum1 += tmp[i].first; sum2 += tmp[i].second; } cout << sum1 << " " << sum2 << endl; vector<string>ans(sum1,string(sum2,'#')); sum1 = 0,sum2 = 0; for(int i = 0; i < tmp.size(); i++) { if(i) { ans[sum1-1][sum2] = '.'; } for(int j = sum1; j < sum1+tmp[i].first; j++) { for(int k = sum2; k < sum2+tmp[i].second; k++) { ans[j][k] = '.'; } } sum1 += tmp[i].first; sum2 += tmp[i].second; } for(int i = 0; i < sum1; i++) { cout << ans[i] << endl; } }