結果
問題 | No.5002 stick xor |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2018-05-25 23:00:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 113 ms / 1,000 ms |
コード長 | 2,520 bytes |
コンパイル時間 | 5,076 ms |
実行使用メモリ | 1,592 KB |
スコア | 3,229 |
最終ジャッジ日時 | 2018-05-25 23:00:48 |
ジャッジサーバーID (参考情報) |
judge7 / |
純コード判定しない問題か言語 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 100 ms
1,588 KB |
testcase_01 | AC | 92 ms
1,592 KB |
testcase_02 | AC | 95 ms
1,588 KB |
testcase_03 | AC | 93 ms
1,588 KB |
testcase_04 | AC | 93 ms
1,592 KB |
testcase_05 | AC | 93 ms
1,592 KB |
testcase_06 | AC | 104 ms
1,592 KB |
testcase_07 | AC | 113 ms
1,588 KB |
testcase_08 | AC | 93 ms
1,592 KB |
testcase_09 | AC | 95 ms
1,592 KB |
testcase_10 | AC | 93 ms
1,588 KB |
testcase_11 | AC | 95 ms
1,588 KB |
testcase_12 | AC | 95 ms
1,592 KB |
testcase_13 | AC | 93 ms
1,592 KB |
testcase_14 | AC | 100 ms
1,588 KB |
testcase_15 | AC | 94 ms
1,592 KB |
testcase_16 | AC | 94 ms
1,592 KB |
testcase_17 | AC | 93 ms
1,588 KB |
testcase_18 | AC | 94 ms
1,588 KB |
testcase_19 | AC | 91 ms
1,592 KB |
testcase_20 | AC | 91 ms
1,588 KB |
testcase_21 | AC | 93 ms
1,588 KB |
testcase_22 | AC | 93 ms
1,592 KB |
testcase_23 | AC | 94 ms
1,592 KB |
testcase_24 | AC | 102 ms
1,592 KB |
testcase_25 | AC | 104 ms
1,592 KB |
testcase_26 | AC | 108 ms
1,592 KB |
testcase_27 | AC | 93 ms
1,588 KB |
testcase_28 | AC | 94 ms
1,588 KB |
testcase_29 | AC | 93 ms
1,592 KB |
testcase_30 | AC | 93 ms
1,588 KB |
testcase_31 | AC | 91 ms
1,588 KB |
ソースコード
#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,1000){ 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; }