結果

問題 No.1427 Simplified Tetris
ユーザー FF256grhyFF256grhy
提出日時 2021-03-12 23:19:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 6,803 bytes
コンパイル時間 1,893 ms
コンパイル使用メモリ 208,752 KB
最終ジャッジ日時 2023-08-04 16:43:51
合計ジャッジ時間 2,540 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In instantiation of ‘T in() [with T = std::array<int, 2>]’:
main.cpp:57:67:   required from ‘auto ain() [with T = int; long unsigned int N = 2]’
main.cpp:164:27:   required from here
main.cpp:48:43: エラー: no match for ‘operator>>’ (operand types are ‘std::basic_istream<char>’ and ‘std::array<int, 2>’)
   48 | template<typename T> T in() { T a; (* IS) >> a; return a; }
      |                                    ~~~~~~~^~~~
次のファイルから読み込み:  /usr/local/gcc7/include/c++/12.2.0/sstream:38,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/complex:45,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/ccomplex:39,
         次から読み込み:  /usr/local/gcc7/include/c++/12.2.0/x86_64-pc-linux-gnu/bits/stdc++.h:54,
         次から読み込み:  main.cpp:1:
/usr/local/gcc7/include/c++/12.2.0/istream:120:7: 備考: 候補: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(__istream_type& (*)(__istream_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>]’
  120 |       operator>>(__istream_type& (*__pf)(__istream_type&))
      |       ^~~~~~~~
/usr/local/gcc7/include/c++/12.2.0/istream:120:36: 備考:   no known conversion for argument 1 from ‘std::array<int, 2>’ to ‘std::basic_istream<char>::__istream_type& (*)(std::basic_istream<char>::__istream_type&)’ {aka ‘std::basic_istream<char>& (*)(std::basic_istream<char>&)’}
  120 |       operator>>(__istream_type& (*__pf)(__istream_type&))
      |                  ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/usr/local/gcc7/include/c++/12.2.0/istream:124:7: 備考: 候補: ‘std::basic_istream<_CharT, _Traits>::__istream_type& std::basic_istream<_CharT, _Traits>::operator>>(__ios_type& (*)(__ios_type&)) [with _CharT = char; _Traits = std::char_traits<char>; __istream_type = std::basic_istream<char>; __ios_type = std::

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL = long long int;
#define incII(i, l, r) for(LL i = (l)    ; i <= (r); i++)
#define incIX(i, l, r) for(LL i = (l)    ; i <  (r); i++)
#define incXI(i, l, r) for(LL i = (l) + 1; i <= (r); i++)
#define incXX(i, l, r) for(LL i = (l) + 1; i <  (r); i++)
#define decII(i, l, r) for(LL i = (r)    ; i >= (l); i--)
#define decIX(i, l, r) for(LL i = (r) - 1; i >= (l); i--)
#define decXI(i, l, r) for(LL i = (r)    ; i >  (l); i--)
#define decXX(i, l, r) for(LL i = (r) - 1; i >  (l); i--)
#define inc(i, n)  incIX(i, 0, n)
#define dec(i, n)  decIX(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec1(i, n) decII(i, 1, n)
auto inII = [](auto x, auto l, auto r) { return (l <= x && x <= r); };
auto inIX = [](auto x, auto l, auto r) { return (l <= x && x <  r); };
auto inXI = [](auto x, auto l, auto r) { return (l <  x && x <= r); };
auto inXX = [](auto x, auto l, auto r) { return (l <  x && x <  r); };
auto setmin   = [](auto & a, auto b) { return (b <  a ? a = b, true : false); };
auto setmax   = [](auto & a, auto b) { return (b >  a ? a = b, true : false); };
auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); };
auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); };
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define MT make_tuple
#define FI first
#define SE second
#define FR front()
#define BA back()
#define ALL(c) c.begin(), c.end()
#define RALL(c) c.rbegin(), c.rend()
#define RV(c) reverse(ALL(c))
#define SC static_cast
#define SI(c) SC<int>(c.size())
#define SL(c) SC<LL >(c.size())
#define RF(e, c) for(auto & e: c)
#define SF(c, ...) for(auto & [__VA_ARGS__]: c)
#define until(e) while(! (e))
#define if_not(e) if(! (e))
#define ef else if
#define UR assert(false)
auto * IS = & cin;
auto * OS = & cout;
array<string, 3> SEQ = { "", " ", "" };
// input
template<typename T> T in() { T a; (* IS) >> a; return a; }
// input: tuple
template<int I, typename U> void tin_(istream & is, U & t) {
	if constexpr(I < tuple_size<U>::value) { is >> get<I>(t); tin_<I + 1>(is, t); }
}
template<typename ... T> istream & operator>>(istream & is, tuple<T ...> & t) { tin_<0>(is, t); return is; }
template<typename ... T> auto tin() { return in<tuple<T ...>>(); }
// input: array
template<typename T, size_t N> istream & operator>>(istream & is, array<T, N> & a) { RF(e, a) { is >> e; } return is; }
template<typename T, size_t N> auto ain() { return in<array<T, N>>(); }
// input: multi-dimensional vector
template<typename T> T vin() { T v; (* IS) >> v; return v; }
template<typename T, typename N, typename ... M> auto vin(N n, M ... m) {
	vector<decltype(vin<T, M ...>(m ...))> v(n); inc(i, n) { v[i] = vin<T, M ...>(m ...); } return v;
}
// input: multi-column (tuple<vector>)
template<typename U, int I> void colin_([[maybe_unused]] U & t) { }
template<typename U, int I, typename A, typename ... B> void colin_(U & t) {
	get<I>(t).PB(in<A>()); colin_<U, I + 1, B ...>(t);
}
template<typename ... T> auto colin(int n) {
	tuple<vector<T> ...> t; inc(i, n) { colin_<tuple<vector<T> ...>, 0, T ...>(t); } return t;
}
// output
void out_([[maybe_unused]] string s) { }
template<typename A> void out_([[maybe_unused]] string s, A && a) { (* OS) << a; }
template<typename A, typename ... B> void out_(string s, A && a, B && ... b) { (* OS) << a << s; out_(s, b ...); }
auto outF = [](auto x, auto y, auto z, auto ... a) { (* OS) << x; out_(y, a ...); (* OS) << z << flush; };
auto out  = [](auto ... a) { outF("", " " , "\n", a ...); };
auto outS = [](auto ... a) { outF("", " " , " " , a ...); };
auto outL = [](auto ... a) { outF("", "\n", "\n", a ...); };
auto outN = [](auto ... a) { outF("", ""  , ""  , a ...); };
// output: multi-dimensional vector
template<typename T> ostream & operator<<(ostream & os, vector<T> const & v) {
	os << SEQ[0]; inc(i, SI(v)) { os << (i == 0 ? "" : SEQ[1]) << v[i]; } return (os << SEQ[2]);
}
template<typename T> void vout_(T && v) { (* OS) << v; }
template<typename T, typename A, typename ... B> void vout_(T && v, A a, B ... b) {
	inc(i, SI(v)) { (* OS) << (i == 0 ? "" : a); vout_(v[i], b ...); }
}
template<typename T, typename A, typename ... B> void vout (T && v, A a, B ... b) { vout_(v, a, b ...); (* OS) << a << flush; }
template<typename T, typename A, typename ... B> void voutN(T && v, A a, B ... b) { vout_(v, a, b ...); (* OS)      << flush; }

// ---- ----

#include <atcoder/maxflow>
using namespace atcoder;

auto dd = [](int h, int w, int i, int j, int k) -> tuple<bool, int, int> {
	vector<int> di = { +1,  0, -1,  0, +1, +1, -1, -1, 0 };
	vector<int> dj = {  0, +1,  0, -1, +1, -1, +1, -1, 0 };
	int ii = i + di.at(k);
	int jj = j + dj.at(k);
	return { inIX(ii, 0, h) && inIX(jj, 0, w), ii, jj };
};

int main() {
	auto solve = [](auto s) -> optional<vector<string>> {
		int h = SI(s), w = SI(s[0]);
		
		auto id = [&](int i, int j) { return w * i + j; };
		auto pos = [&](int x) -> pair<int, int> { return { x / w, x % w }; };
		
		mf_graph<int> g(h * w + 2);
		int S = h * w, T = S + 1;
		inc(i, h) {
		inc(j, w) {
			if_not(s[i][j] == '#') { continue; }
			if((i + j) % 2 == 0) {
				g.add_edge(S, id(i, j), 1);
			} else {
				g.add_edge(id(i, j), T, 1);
			}
			inc(k, 4) {
				auto [f, ii, jj] = dd(h, w, i, j, k);
				if_not(f && s[ii][jj] == '#') { continue; }
				if((i + j) % 2 == 0) {
					g.add_edge(id(i, j), id(ii, jj), 1);
				} else {
					g.add_edge(id(ii, jj), id(i, j), 1);
				}
			}
		}
		}
		
		g.flow(S, T);
		auto ans = g.edges();
		string ord;
		inc(i, 26) { ord += 'A' + i; }
		inc(i, 26) { ord += 'a' + i; }
		int c = 0;
		SF(ans, a, b, c_, f) {
			if(a == S || b == T || f == 0) { continue; }
			auto [ai, aj] = pos(a);
			auto [bi, bj] = pos(b);
			if(ai == bi) {
				if_not(aj <= bj) { swap(aj, bj); }
				s[ai][aj] = ord[c];
				s[bi][bj] = ord[c];
				c++;
			}
			if(aj == bj) {
				if_not(ai <= bi) { swap(ai, bi); }
				s[ai][aj] = ord[c];
				s[bi][bj] = ord[c];
				c++;
			}
		}
		
		int x = 0;
		RF(ss, s) { x += count(ALL(ss), '#'); }
		if(x == 0) { return s; } else { return {}; }
	};
	
	auto no = [] { out("No"); exit(0); };
	
	auto [h, w] = ain<int, 2>();
	auto s = vin<string>(h);
	RV(s);
	
	string filled(w, '#'), empty(w, '.');
	
	int ec = 0;
	RF(ss, s) {
		if(ss == filled) { no(); }
		if(ss == empty) { ec++; } else { if(ec != 0) { no(); } }
	}
	
	incII(e, 0, ec) {
		vector<int> p(h, 2);
		inc(i, ec) { p[i] = (i < e ? 0 : 1); }
		do {
			vector<string> v;
			int c = 0;
			RF(pp, p) {
				if(pp == 0) { v.PB(empty); }
				if(pp == 1) { v.PB(filled); }
				if(pp == 2) { v.PB(s[c++]); }
			}
			auto ans = solve(v);
			if(ans) {
				RV(ans.value());
				out("Yes");
				vout(ans.value(), "\n");
				exit(0);
			}
		} while(next_permutation(ALL(p)));
	}
	no();
}
0