結果
問題 | No.883 ぬりえ |
ユーザー | ikd |
提出日時 | 2019-09-13 22:47:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 812 bytes |
コンパイル時間 | 642 ms |
コンパイル使用メモリ | 74,240 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 10:09:42 |
合計ジャッジ時間 | 6,509 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 275 ms
5,376 KB |
testcase_17 | AC | 84 ms
5,376 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
#include <algorithm> #include <cassert> #include <iostream> #include <vector> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; int main() { int n, k; cin >> n >> k; auto m = (n + k - 1) / k; // m <= n vector<vector<char>> a(m, vector<char>(m, '.')); rep(i, m) a[i][i] = '#'; auto bk = m; rep(i, m) { rep(j, m) { if (a[i][j] == '#') continue; if (bk > n) continue; int r_cnt = 0; rep(h, m) { if (a[h][j] == '#') r_cnt += 1; } int c_cnt = 0; rep(h, m) { if (a[i][h] == '#') c_cnt += 1; } if (r_cnt < k and c_cnt < k) { a[i][j] = '#'; bk += 1; } } } assert(bk == n); cout << m << endl; rep(i, m) { rep(j, m) { cout << a[i][j]; } cout << endl; } return 0; }