結果

問題 No.918 LISGRID
ユーザー kotatsugamekotatsugame
提出日時 2019-10-26 00:55:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,167 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 15,172 KB
最終ジャッジ日時 2024-09-13 11:59:36
合計ジャッジ時間 4,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,388 KB
testcase_01 AC 33 ms
12,328 KB
testcase_02 AC 13 ms
9,276 KB
testcase_03 AC 17 ms
9,588 KB
testcase_04 AC 14 ms
9,220 KB
testcase_05 AC 39 ms
12,868 KB
testcase_06 AC 37 ms
12,580 KB
testcase_07 AC 52 ms
15,004 KB
testcase_08 AC 31 ms
12,028 KB
testcase_09 AC 41 ms
12,992 KB
testcase_10 AC 40 ms
12,944 KB
testcase_11 AC 39 ms
13,136 KB
testcase_12 AC 43 ms
13,448 KB
testcase_13 AC 36 ms
12,484 KB
testcase_14 AC 49 ms
14,468 KB
testcase_15 AC 53 ms
15,172 KB
testcase_16 AC 21 ms
10,720 KB
testcase_17 AC 23 ms
10,580 KB
testcase_18 AC 22 ms
10,680 KB
testcase_19 AC 10 ms
8,552 KB
testcase_20 AC 29 ms
11,628 KB
testcase_21 AC 10 ms
9,028 KB
testcase_22 AC 7 ms
9,156 KB
testcase_23 AC 19 ms
10,212 KB
testcase_24 AC 5 ms
7,696 KB
testcase_25 AC 4 ms
7,324 KB
testcase_26 AC 4 ms
7,192 KB
testcase_27 AC 4 ms
7,148 KB
testcase_28 AC 3 ms
7,400 KB
testcase_29 AC 4 ms
7,332 KB
testcase_30 AC 4 ms
7,212 KB
testcase_31 AC 4 ms
7,332 KB
testcase_32 AC 4 ms
8,004 KB
testcase_33 AC 4 ms
7,244 KB
testcase_34 AC 5 ms
7,812 KB
testcase_35 AC 6 ms
7,864 KB
testcase_36 AC 4 ms
8,520 KB
testcase_37 AC 28 ms
11,264 KB
testcase_38 AC 19 ms
10,588 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   22 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int H,W;
vector<pair<int,int> >G[400][400];
int A[400],B[400];
int cnt[400][400];
vector<pair<int,int> >S;
bool vis[400][400];
int ans[400][400];
void dfs(int i,int j)
{
	vis[i][j]=true;
	for(pair<int,int>p:G[i][j])
	{
		if(vis[p.first][p.second])continue;
		dfs(p.first,p.second);
	}
	S.push_back(make_pair(i,j));
}
main()
{
	cin>>H>>W;
	for(int i=0;i<H;i++)cin>>A[i];
	sort(A,A+H);
	for(int i=0;i<H;i++)
	{
		for(int j=0;j+1<W;j++)
		{
			if(j<W-A[i])G[i][j].push_back(make_pair(i,j+1));
			else G[i][j+1].push_back(make_pair(i,j));
		}
	}
	for(int i=0;i<W;i++)cin>>B[i];
	sort(B,B+W);
	for(int j=0;j<W;j++)
	{
		for(int i=0;i+1<H;i++)
		{
			if(i<H-B[j])G[i][j].push_back(make_pair(i+1,j));
			else G[i+1][j].push_back(make_pair(i,j));
		}
	}
	for(int i=0;i<H;i++)for(int j=0;j<W;j++)
	{
		for(pair<int,int>p:G[i][j])cnt[p.first][p.second]++;
	}
	for(int i=0;i<H;i++)for(int j=0;j<W;j++)
	{
		if(vis[i][j]||cnt[i][j])continue;
		dfs(i,j);
	}
	for(int i=0;i<H*W;i++)ans[S[i].first][S[i].second]=i+1;
	for(int i=0;i<H;i++)
	{
		for(int j=0;j<W;j++)cout<<ans[i][j]<<(j+1==W?"\n":" ");
	}
}
0