結果

問題 No.1910 High Element on Grid
ユーザー kabipoyokabipoyo
提出日時 2022-04-22 22:22:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,640 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 206,112 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 03:38:56
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 29 ms
6,940 KB
testcase_12 AC 30 ms
6,944 KB
testcase_13 AC 29 ms
6,944 KB
testcase_14 AC 36 ms
6,944 KB
testcase_15 AC 24 ms
6,944 KB
testcase_16 AC 21 ms
6,944 KB
testcase_17 AC 23 ms
6,944 KB
testcase_18 AC 29 ms
6,944 KB
testcase_19 AC 23 ms
6,944 KB
testcase_20 AC 23 ms
6,940 KB
testcase_21 AC 27 ms
6,940 KB
testcase_22 AC 18 ms
6,940 KB
testcase_23 AC 31 ms
6,940 KB
testcase_24 AC 20 ms
6,940 KB
testcase_25 AC 27 ms
6,940 KB
testcase_26 AC 25 ms
6,940 KB
testcase_27 AC 27 ms
6,944 KB
testcase_28 AC 18 ms
6,944 KB
testcase_29 AC 21 ms
6,940 KB
testcase_30 AC 24 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 40 ms
6,944 KB
testcase_33 AC 40 ms
6,940 KB
testcase_34 AC 39 ms
6,944 KB
testcase_35 AC 40 ms
6,940 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 21 ms
6,940 KB
testcase_38 AC 11 ms
6,944 KB
testcase_39 AC 9 ms
6,940 KB
testcase_40 AC 4 ms
6,944 KB
testcase_41 AC 11 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include <atcoder/all>
using namespace std;
// using namespace atcoder;
typedef int64_t lint;
#define rep(i, n) for(int i=0; i<n; i++)
#define repx(i, l, n) for(int i=l; i<n; i++)
#define all(v) v.begin(), v.end()
#define show(x) cout << #x << ": " << x << endl;
#define list(x) cout << #x << ": " << x << "  ";
#define pb push_back
using vi = vector<lint>;
using vvi = vector<vector<lint>>;
template<class T> inline void vin(vector<T>& v) { rep(i, v.size()) cin >> v.at(i); }
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<class T> inline void drop(T x) { cout << x << endl; exit(0); }
template<class T> void vout(vector<T> v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; }
constexpr lint LINF = LLONG_MAX/2;

int main() {
	lint H, W;
	cin >> H >> W;
	vi v(H), w(W);
	vin(v);
	vin(w);

	lint a=0, b=0, c=0, x, y, z;
	vvi m(H, vi(W, 1));
	m[0][0] = 100100100;
	repx(i, 1, H) {
		a = i;
		rep(j, W) {
			m[i][j] = ++a;
		}
	}
	repx(i, 1, H) {
		lint ng = 100100100, mid, ok = 1;
		while (abs(ok - ng) > 1) {
			mid = (ok + ng) / 2;
			a = mid, b = 1;
			repx(j, 1, W) {
				if (chmax(a, m[i][j])) b++;
			}
			if (b < v[i]) ng = mid;
			else ok = mid;
		}
		m[i][0] = ok;
	}
	repx(j, 1, W) {
		lint ng = 100100100, mid, ok = 1;
		while (abs(ok - ng) > 1) {
			mid = (ok + ng) / 2;
			a = mid, b = 1;
			repx(i, 1, H) {
				if (chmax(a, m[i][j])) b++;
			}
			if (b < w[j]) ng = mid;
			else ok = mid;
		}
		m[0][j] = ok;
	}
	rep(i, H) vout(m[i]);
}
0