結果

問題 No.5002 stick xor
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2018-05-25 23:11:15
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 923 ms / 1,000 ms
コード長 2,520 bytes
コンパイル時間 30,712 ms
実行使用メモリ 1,592 KB
スコア 3,803
最終ジャッジ日時 2018-05-25 23:11:47
ジャッジサーバーID
(参考情報)
judge10 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 858 ms
1,588 KB
testcase_01 AC 843 ms
1,592 KB
testcase_02 AC 923 ms
1,588 KB
testcase_03 AC 914 ms
1,588 KB
testcase_04 AC 867 ms
1,592 KB
testcase_05 AC 864 ms
1,588 KB
testcase_06 AC 843 ms
1,588 KB
testcase_07 AC 896 ms
1,588 KB
testcase_08 AC 903 ms
1,592 KB
testcase_09 AC 913 ms
1,588 KB
testcase_10 AC 883 ms
1,592 KB
testcase_11 AC 893 ms
1,588 KB
testcase_12 AC 873 ms
1,592 KB
testcase_13 AC 886 ms
1,592 KB
testcase_14 AC 903 ms
1,592 KB
testcase_15 AC 890 ms
1,588 KB
testcase_16 AC 922 ms
1,588 KB
testcase_17 AC 887 ms
1,592 KB
testcase_18 AC 832 ms
1,592 KB
testcase_19 AC 856 ms
1,592 KB
testcase_20 AC 792 ms
1,588 KB
testcase_21 AC 871 ms
1,588 KB
testcase_22 AC 847 ms
1,592 KB
testcase_23 AC 886 ms
1,592 KB
testcase_24 AC 913 ms
1,592 KB
testcase_25 AC 885 ms
1,588 KB
testcase_26 AC 857 ms
1,592 KB
testcase_27 AC 836 ms
1,592 KB
testcase_28 AC 847 ms
1,588 KB
testcase_29 AC 858 ms
1,592 KB
testcase_30 AC 826 ms
1,592 KB
testcase_31 AC 817 ms
1,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>
#include <iomanip>
using namespace std;

typedef long long ll;

#define sz size()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(c) (c).begin(), (c).end()
#define rep(i,a,b) for(ll i=(a);i<(b);++i)
#define per(i,a,b) for(ll i=(b-1);i>=(a);--i)
#define clr(a, b) memset((a), (b) ,sizeof(a))
#define ctos(c) string(1,c)
#define print(x) cout<<#x<<" = "<<x<<endl;

#define MOD 1000000007

ll n,k;

ll f(vector<string> &vs){
	ll score = 0;
	rep(y,0,n){
		rep(x,0,n){
			if(vs[y][x]=='0')score++;
		}
	}
	return score;
}

void fh(ll y, ll x, ll a, vector<string> &vs){
	rep(p,0,a){
		if(vs[y+p][x]=='1'){
			vs[y+p][x]='0';
		}
		else{
			vs[y+p][x]='1';
		}
	}
}

void fv(ll y, ll x, ll a, vector<string> &vs){
	rep(p,0,a){
		if(vs[y][x+p]=='1'){
			vs[y][x+p]='0';
		}
		else{
			vs[y][x+p]='1';
		}
	}
}

unsigned int xor128(void) { 
  static unsigned int x = 123456789;
  static unsigned int y = 362436069;
  static unsigned int z = 521288629;
  static unsigned int w = 88675123; 
  unsigned int t;
 
  t = x ^ (x << 11);
  x = y; y = z; z = w;
  return w = (w ^ (w >> 19)) ^ (t ^ (t >> 8)); 
}

int main() {
	cin>>n>>k;
	vector<ll> v;
	rep(i,0,k){
		ll a;
		cin>>a;
		v.pb(a);
	}
	vector<string> vs;
	rep(i,0,n){
		string s;
		cin>>s;
		vs.pb(s);
	}
	ll score = f(vs);
	vector<pair<pair<ll,ll>,ll > > best_vv;
	rep(t,0,9000){
		vector<pair<pair<ll,ll>,ll > > vv;
		rep(i,0,k){
			ll b = xor128()%2;
			if(b==0){
				vv.pb(mp(mp(xor128()%(n-v[i]+1),xor128()%n),0));
			}
			else{
				vv.pb(mp(mp(xor128()%n,xor128()%(n-v[i]+1)),1));
			}
		}
		vector<string> vs1 = vs;
		rep(i,0,k){
			if(vv[i].se==0){
				fh(vv[i].fi.fi,vv[i].fi.se,v[i],vs1);
			}
			else{
				fv(vv[i].fi.fi,vv[i].fi.se,v[i],vs1);
			}
		}
		ll score1 = f(vs1);
		if(score1>score){
			score = score1;
			best_vv = vv;
		}
	}
	vector<pair<pair<ll,ll>,ll > > vv = best_vv;
	rep(i,0,best_vv.sz){
		if(vv[i].se==0){
			cout << vv[i].fi.fi+1 << " " << vv[i].fi.se+1 << " " << vv[i].fi.fi+v[i] << " " << vv[i].fi.se+1 << endl;
		}
		else{
			cout << vv[i].fi.fi+1 << " " << vv[i].fi.se+1 << " " << vv[i].fi.fi+1 << " " << vv[i].fi.se+v[i] << endl;
		}
	}
	return 0;
}
0