結果
問題 | No.2339 Factorial Paths |
ユーザー | shobonvip |
提出日時 | 2023-06-03 02:25:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 42 ms / 2,000 ms |
コード長 | 1,182 bytes |
コンパイル時間 | 4,579 ms |
コンパイル使用メモリ | 267,176 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-09 03:13:35 |
合計ジャッジ時間 | 9,855 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 3 ms
6,944 KB |
testcase_13 | AC | 6 ms
6,944 KB |
testcase_14 | AC | 8 ms
6,940 KB |
testcase_15 | AC | 20 ms
6,940 KB |
testcase_16 | AC | 30 ms
6,940 KB |
testcase_17 | AC | 38 ms
6,944 KB |
testcase_18 | AC | 41 ms
6,944 KB |
testcase_19 | AC | 42 ms
6,944 KB |
testcase_20 | AC | 42 ms
6,944 KB |
testcase_21 | AC | 42 ms
6,944 KB |
testcase_22 | AC | 41 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; void divide(int n, vector<pair<int,int>> &g){ if (n == 1) return; if (n == 3){ g.push_back(pair(3, 3)); return; } int t = n / 2; int s = n - t; g.push_back(pair(t+1, s+1)); divide(t, g); divide(s, g); } int main(){ int n; cin >> n; if (n == 1){ cout << 1 << " " << 1 << endl; cout << "." << endl; return 0; } vector<pair<int,int>> g; int h = 0, w = 0; divide(n, g); for (int i=0; i<(int)g.size(); i++){ if (g[i].first < g[i].second){ swap(g[i].first, g[i].second); } h += g[i].first; w += g[i].second; //cout << g[i].first << " " << g[i].second << endl; } h -= (int)g.size() - 1; vector<vector<char>> s(h, vector<char>(w, '#')); int ph = 0; int pw = 0; for (int i=0; i<(int)g.size(); i++){ for (int x=ph; x<ph+g[i].first; x++){ for (int y=pw; y<pw+g[i].second; y++){ s[x][y] = '.'; } } ph += g[i].first - 1; pw += g[i].second; } cout << h << " " << w << endl; //return 0; for (int i=0; i<h; i++){ for (int j=0; j<w; j++){ cout << s[i][j]; } cout << endl; } }