結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー |
![]() |
提出日時 | 2021-02-19 22:04:47 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 24 ms / 3,153 ms |
コード長 | 1,327 bytes |
コンパイル時間 | 2,557 ms |
コンパイル使用メモリ | 170,628 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 19:18:59 |
合計ジャッジ時間 | 29,606 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include<bits/stdc++.h>using namespace std;typedef long long ll;typedef pair<int,int> P;#define p_ary(ary,a,b) do { cout << "["; for (int count = (a);count < (b);++count) cout << ary[count] << ((b)-1 == count ? "" : ", "); cout << "]\n";} while(0)#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)template<typename T1,typename T2>ostream& operator<<(ostream& os,const pair<T1,T2>& a) {os << "(" << a.first << ", " << a.second << ")";return os;}const char newl = '\n';int main() {int h,w,s;cin >> w >> h >> s;int x = 0,y = 0,szx = 1,szy = 1;if (h%3 == 0) x = 1;else if (h%3 == 2) szx = 2;if (w%3 == 0) y = 1;else if (w%3 == 2) szy = 2;if (szx*szy*9 < s) {cout << -1 << newl;return 0;}vector<vector<int>> ans(h+2,vector<int>(w+2,0));for (int i = x;i < h;i += 3) for (int j = y;j < w;j += 3) {int ss = s;for (int k = 0;k < 3;++k) for (int l = 0;l < 3;++l) if (k < szx && l < szy) {ans[i+k][j+l] = min(9,ss);ss -= min(9,ss);}}for (int i = 0;i < h;++i) {for (int j = 0;j < w;++j) cout << ans[i][j];cout << newl;}}