結果
問題 | No.1398 調和の魔法陣 (構築) |
ユーザー | auaua |
提出日時 | 2021-02-19 23:43:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,095 bytes |
コンパイル時間 | 1,435 ms |
コンパイル使用メモリ | 173,628 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-16 23:48:24 |
合計ジャッジ時間 | 25,012 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | AC | 13 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 4 ms
6,940 KB |
testcase_16 | AC | 25 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 4 ms
6,940 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 4 ms
6,944 KB |
testcase_24 | WA | - |
testcase_25 | AC | 12 ms
6,940 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 4 ms
6,940 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //#define int long long #define REP(i,m,n) for(int i=(m);i<(n);i++) #define rep(i,n) REP(i,0,n) #define pb push_back #define all(a) a.begin(),a.end() #define rall(c) (c).rbegin(),(c).rend() #define mp make_pair #define endl '\n' #define vec vector<ll> #define mat vector<vector<ll> > #define fi first #define se second #define double long double typedef long long ll; typedef unsigned long long ull; typedef pair<ll,ll> pll; //typedef long double ld; typedef complex<double> Complex; const ll INF=1e9+7; const ll inf=INF*INF; const ll mod=1e9+7; const ll MAX=140010; int dx[]={-1,-1,-1,0,0,0,1,1,1}; int dy[]={-1,0,1,-1,0,1,-1,0,1}; signed main(){ cin.tie(0); ios::sync_with_stdio(false); ll w,h,x;cin>>w>>h>>x; vector<vector<ll> >ans(h+2,vector<ll>(w+2,-1)); rep(i,h+2){ ans[i][0]=0; ans[i][w]=0; } rep(i,w+2){ ans[0][i]=0; ans[h][i]=0; } for(int i=h-3;i>=0;i--){ for(int j=w-1;j>=0;j--){ ans[i][j]=max(ans[i+3][j],ans[i][j]); } } for(int i=h-1;i>=0;i--){ for(int j=w-3;j>=0;j--){ ans[i][j]=max(ans[i][j+3],ans[i][j]); } } REP(i,1,h+1){ REP(j,1,w+1){ ll cnt=0; ll sum=0; rep(k,9){ ll nx=i+dx[k]; ll ny=j+dy[k]; if(ans[nx][ny]==-1){ cnt++; }else{ sum+=ans[nx][ny]; } } if(9LL*cnt>=x-sum){ ll d=x-sum; rep(k,9){ ll nx=i+dx[k]; ll ny=j+dy[k]; if(ans[nx][ny]==-1){ ll mi=min(d,9LL); ans[nx][ny]=mi; d-=mi; } } }else{ cout<<-1<<endl; return 0; } } } REP(i,1,h+1){ REP(j,1,w+1){ cout<<ans[i][j]; } cout<<endl; } }