結果

問題 No.918 LISGRID
ユーザー tko919tko919
提出日時 2019-10-26 19:20:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 1,839 ms
コンパイル使用メモリ 179,040 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-09-14 16:12:02
合計ジャッジ時間 6,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,552 KB
testcase_01 AC 38 ms
13,440 KB
testcase_02 AC 13 ms
9,728 KB
testcase_03 AC 19 ms
10,236 KB
testcase_04 AC 15 ms
9,728 KB
testcase_05 AC 50 ms
14,160 KB
testcase_06 AC 43 ms
13,952 KB
testcase_07 AC 69 ms
16,256 KB
testcase_08 AC 38 ms
12,928 KB
testcase_09 AC 53 ms
14,452 KB
testcase_10 AC 52 ms
14,464 KB
testcase_11 AC 48 ms
14,464 KB
testcase_12 AC 56 ms
14,848 KB
testcase_13 AC 44 ms
13,696 KB
testcase_14 AC 65 ms
15,872 KB
testcase_15 AC 74 ms
16,512 KB
testcase_16 AC 27 ms
11,360 KB
testcase_17 AC 27 ms
11,648 KB
testcase_18 AC 27 ms
11,520 KB
testcase_19 AC 10 ms
8,960 KB
testcase_20 AC 37 ms
12,544 KB
testcase_21 AC 12 ms
9,088 KB
testcase_22 AC 9 ms
8,448 KB
testcase_23 AC 22 ms
10,948 KB
testcase_24 AC 5 ms
8,012 KB
testcase_25 AC 5 ms
7,552 KB
testcase_26 AC 4 ms
7,680 KB
testcase_27 AC 5 ms
7,552 KB
testcase_28 AC 4 ms
7,552 KB
testcase_29 AC 4 ms
7,552 KB
testcase_30 AC 4 ms
7,424 KB
testcase_31 AC 3 ms
7,552 KB
testcase_32 AC 4 ms
7,552 KB
testcase_33 AC 4 ms
7,540 KB
testcase_34 AC 4 ms
7,936 KB
testcase_35 AC 7 ms
8,264 KB
testcase_36 AC 5 ms
7,792 KB
testcase_37 AC 34 ms
12,488 KB
testcase_38 AC 23 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; typedef pair<ll, ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);}
const int inf = 0x3fffffff; const ll INF = 0x3fffffffffffffff;
//template end

vector<P> edge[410][410]; int cnt[410][410]={};
int ans[410][410];

int main(){
    int h,w; scanf("%d%d",&h,&w);
    vector<int> a(h),b(w);
    rep(i,0,h)scanf("%d",&a[i]);
    rep(i,0,w)scanf("%d",&b[i]);
    sort(ALL(a)); sort(ALL(b));
    rep(i,0,h){
        rep(j,0,w-a[i])edge[i][j].push_back({i,j+1}),cnt[i][j+1]++;
        rep(j,w-a[i],w-1)edge[i][j+1].push_back({i,j}),cnt[i][j]++;
    }
    rep(j,0,w){
        rep(i,0,h-b[j])edge[i][j].push_back({i+1,j}),cnt[i+1][j]++;
        rep(i,h-b[j],h-1)edge[i+1][j].push_back({i,j}),cnt[i][j]++;
    }
    queue<P> q; int d=h*w;
    rep(i,0,h)rep(j,0,w)if(!cnt[i][j])q.push({i,j});
    while(!q.empty()){
        auto now=q.front(); q.pop();
        int x=now.first,y=now.second;
        ans[x][y]=d; d--;
        for(auto nxt:edge[x][y]){
            cnt[nxt.first][nxt.second]--;
            if(!cnt[nxt.first][nxt.second])q.push({nxt});
        }
    }
    rep(i,0,h){
        rep(j,0,w)printf("%d ",ans[i][j]);
        puts("");
    }
    return 0;
}
0