結果

問題 No.5002 stick xor
ユーザー naimonon77naimonon77
提出日時 2019-01-01 16:21:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,993 bytes
コンパイル時間 2,947 ms
実行使用メモリ 1,616 KB
スコア 0
最終ジャッジ日時 2019-01-01 16:21:46
ジャッジサーバーID
(参考情報)
judge6 /
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define NOMINMAX
#define TEST_MODE true

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES

#include "bits/stdc++.h"
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define rep2(i, a, b) for (int i = (a); i < (int)(b); ++i)
#define rrep(i, n) for (int i = (n)-1; i >= 0; --i)
#define rrep2(i, a, b) for (int i = (a)-1; i >= (int)b; --i)
#define range(i, a, b, c) for (int i = a;             \
                                   c > 0 ? i < b : i > b; \
                                   i += c)
#define chmax(a, b) (a = (a) < (b) ? (b) : (a))
#define chmin(a, b) (a = (a) > (b) ? (b) : (a))
using ll = long long;
using ull = unsigned long long;
using ld = long double;
#define all(a) begin(a), end(a)
#define ifnot(a) if (not(a))
#define int long long

#ifdef LOCAL_ENV

#if TEST_MODE == true
const bool test = true;
#define dump(x) //cerr << #x << " : " << (x) << " "
#define dumpl(x) dump(x) << endl
#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

#else
const bool test = false;
#define dump(x) 
#define dumpl(x)
#endif

int dx[] = { 1, 0, -1, 0 };
int dy[] = { 0, 1, 0, -1 };
const int INF = (int)1 << 60;
const int undefined = INF;
const ll INFL = (ll)1 << 60;
ll mod_n = (int)1e9 + 7;
const double eps = 1e-10;
typedef long double Real;
// return -1, 0, 1
int sgn(const Real &r) { return (r > eps) - (r < -eps); }
int sgn(const Real &a, const Real &b) { return sgn(a - b); }

//.....................
const int MAX = (int)2e5 + 5;

vector<string> split(const string &str, char sep)
{
	vector<string> v;
	stringstream ss(str);
	string buffer;
	while (getline(ss, buffer, sep))
	{
		v.push_back(buffer);
	}
	return v;
}

string join(const vector<string>& v, const string delim = 0) {
	string s;
	if (!v.empty()) {
		s += v[0];
		for (decltype(v.size()) i = 1, c = v.size(); i < c; ++i) {
			if (delim != "") s += delim;
			s += v[i];
		}
	}
	return s;
}

string operator * (const string& s, const int& n) {
	string res = "";
	rep(i, n) res += s;
	return res;
}

template <class InputIterator>
int sum(InputIterator begin, InputIterator end)
{
	return accumulate(begin, end, 0ll);
}

template<typename T>
T gcd(T a, T b)
{
	T c;
	while (a != 0) {
		c = a; a = b%a;  b = c;
	}
	return b;
}

template<typename T>
T bit_count(T N) {
	T cnt = 0;
	while (N) {
		if (N & 1) cnt++;
		N >>= 1;
	}
	return cnt;
}

template<typename T>
void print_vec(ostream& ostream, vector<T> a) {
	rep(i, a.size() - 1) ostream << a[i] << " ";
	ostream << a.back() << endl;
}

ll pow_n(ll x, ll n) {
	ll res = 1;
	while (n > 0) {
		if (n & 1) res = res * x;
		x = x * x;
		n >>= 1;
	}
	return res;
}

class Solver {
public:
	int H, W;

	bool grid_ng(int y, int x) {
		return y < 0 || y >= H || x < 0 || x >= W;
	}

	struct Point {
		int x, y, v;
		Point(int x_, int y_, int v_) : x(x_), y(y_), v(v_) {}
		bool operator < (const Point& r) const {
			if (y != r.y) return y < r.y;
			return x < r.x;
		}
	};

	int N, K;
	vector<int> L;
	vector<vector<int>> field;

	void input() {
		cin >> N >> K;
		H = N; W = N;
		L.resize(K); rep(i, K) cin >> L[i];
		field.resize(H);
		rep(y, H) {
			string A; cin >> A;
			field[y].resize(W);
			rep(x, W) field[y][x] = A[x] - '0';
		}
	}

	void reverse(int a, int b, int c, int d) {
		rep2(y, a, c + 1) rep2(x, b, d + 1) {
			auto& cur = field[y][x];
			cur = (cur == 0 ? 1 : 0);
		}
	}	
	
	void reverse(vector<int>& a) {
		rep2(y, a[0], a[2] + 1) rep2(x, a[1], a[3] + 1) {
			auto& cur = field[y][x];
			cur = (cur == 0 ? 1 : 0);
		}
	}

	void field_output() {
		//cerr << "------" << endl;
		rep(y, H) {
			string A;
			A.resize(W);
			rep(x, W) A[x] = field[y][x] + '0';
			//cerr << A << endl;
		}
	}

	void output(const vector<int>& vec_i) {
		vector<string> vec;
		for (auto& v : vec_i) vec.push_back(to_string(v + 1));
		cout << join(vec, " ") << endl;
	}

	int reverse_score(vector<int>& a) {
		int res = 0;
		rep2(y, a[0], a[2] + 1) rep2(x, a[1], a[3] + 1) {
			auto& cur = field[y][x];
			res += (cur == 0 ? -1 : 1);
		}
		return res;
	}

	void output() {
		rep(i, K - H) {
			vector<int> vec = { 0 , 0 , 0 , L[i] - 1 };
			output(vec);
		}
		rep(y, H) {
			vector<int> vec = { y , 0 , y , L[K - H + y] - 1 };
			Point best(0, 0, -INF);
			rep(x, W) {
				//dump(vec[3]); dumpl(W);
				if (vec[3] >= W) break;
				int cur_score = reverse_score(vec);
				if (cur_score > best.v) {
					best.x = x;
					best.v = cur_score;
				}
				vec[1] += 1; vec[3] += 1;
			}
			{
				int x = best.x;
				vec[1] = x;
				vec[3] = x + L.back() - 1;
				output(vec);
			}
		}
	}

	void test() {
		// reverse(0, 0, 1, 2);
		vector<int> vec = { 0, 0, 1, 2 };
		reverse(vec);
		field_output();
	}

	void solve() {
		input();
		test();
		output();
	}
};

signed main()
{
	srand((unsigned int)time(NULL));
	cout << fixed << setprecision(20);
	auto ptr = new Solver();
	ptr->solve();
	delete ptr;
	//while (true) {
	//	if (cin.eof() == true) break;
	//	auto ptr = new Solver();
	//	ptr->solve();
	//	delete ptr;
	//}
	return 0;
}
0