結果

問題 No.918 LISGRID
ユーザー snow39snow39
提出日時 2019-10-26 13:10:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,374 bytes
コンパイル時間 1,225 ms
コンパイル使用メモリ 102,944 KB
実行使用メモリ 13,228 KB
最終ジャッジ日時 2024-09-14 06:25:40
合計ジャッジ時間 4,623 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,280 KB
testcase_01 AC 28 ms
10,736 KB
testcase_02 AC 11 ms
8,600 KB
testcase_03 AC 15 ms
9,000 KB
testcase_04 AC 12 ms
8,536 KB
testcase_05 AC 36 ms
11,532 KB
testcase_06 AC 32 ms
11,160 KB
testcase_07 AC 45 ms
12,916 KB
testcase_08 AC 28 ms
10,520 KB
testcase_09 AC 36 ms
11,588 KB
testcase_10 AC 34 ms
11,716 KB
testcase_11 AC 35 ms
11,568 KB
testcase_12 AC 38 ms
12,184 KB
testcase_13 AC 30 ms
11,236 KB
testcase_14 AC 44 ms
12,500 KB
testcase_15 AC 49 ms
13,228 KB
testcase_16 AC 19 ms
9,408 KB
testcase_17 AC 20 ms
9,444 KB
testcase_18 AC 19 ms
9,424 KB
testcase_19 AC 9 ms
8,064 KB
testcase_20 AC 26 ms
10,392 KB
testcase_21 AC 10 ms
8,152 KB
testcase_22 AC 8 ms
8,136 KB
testcase_23 AC 16 ms
9,024 KB
testcase_24 AC 5 ms
7,416 KB
testcase_25 AC 4 ms
7,228 KB
testcase_26 AC 4 ms
7,288 KB
testcase_27 AC 4 ms
7,236 KB
testcase_28 AC 4 ms
7,200 KB
testcase_29 AC 3 ms
7,228 KB
testcase_30 AC 4 ms
7,284 KB
testcase_31 AC 4 ms
7,256 KB
testcase_32 AC 4 ms
7,240 KB
testcase_33 AC 4 ms
7,436 KB
testcase_34 AC 5 ms
7,368 KB
testcase_35 AC 5 ms
7,748 KB
testcase_36 AC 5 ms
7,292 KB
testcase_37 AC 24 ms
10,124 KB
testcase_38 AC 18 ms
9,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
using namespace std;
typedef long long ll;
const ll MOD=1e9+7;

vector<int> g[401*401];
int ind[401*401];

int main(){
  int H,W;
  cin>>H>>W;
  vector<int> A(H),B(W);
  rep(i,H) cin>>A[i];
  rep(i,W) cin>>B[i];

  sort(A.begin(),A.end());
  sort(B.begin(),B.end());

  for(int i=0;i<H;i++){
    for(int j=0;j<A[i]-1;j++){
      g[i*W+j].push_back(i*W+j+1);
      ind[i*W+j+1]++;
    }
    for(int j=A[i];j<W;j++){
      g[i*W+j].push_back(i*W+j-1);
      ind[i*W+j-1]++;
    }
  }

  for(int i=0;i<W;i++){
    for(int j=0;j<B[i]-1;j++){
      g[j*W+i].push_back((j+1)*W+i);
      ind[(j+1)*W+i]++;
    }
    for(int j=B[i];j<H;j++){
      g[j*W+i].push_back((j-1)*W+i);
      ind[(j-1)*W+i]++;
    }
  }

  queue<int> Q;
  for(int i=0;i<W*H;i++){
    if(ind[i]==0) Q.push(i);
  }

  int val=1;
  vector<int> ans(H*W,0);
  while(!Q.empty()){
    int tp=Q.front();
    Q.pop();

    ans[tp]=val++;
    for(auto nex:g[tp]){
      ind[nex]--;
      if(ind[nex]==0) Q.push(nex);
    }
  }

  for(int i=0;i<H;i++){
    for(int j=0;j<W;j++){
      cout<<ans[i*W+j]<<" ";
    }
    cout<<endl;
  }

  return 0;
}
0