結果

問題 No.5002 stick xor
ユーザー ts_ts_
提出日時 2018-05-26 00:43:01
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 957 ms / 1,000 ms
コード長 2,981 bytes
コンパイル時間 33,178 ms
実行使用メモリ 1,764 KB
スコア 39,687
最終ジャッジ日時 2018-05-26 00:43:36
ジャッジサーバーID
(参考情報)
judge10 /
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 930 ms
1,756 KB
testcase_01 AC 940 ms
1,764 KB
testcase_02 AC 937 ms
1,760 KB
testcase_03 AC 928 ms
1,760 KB
testcase_04 AC 926 ms
1,752 KB
testcase_05 AC 943 ms
1,764 KB
testcase_06 AC 937 ms
1,760 KB
testcase_07 AC 942 ms
1,756 KB
testcase_08 AC 943 ms
1,760 KB
testcase_09 AC 937 ms
1,756 KB
testcase_10 AC 950 ms
1,764 KB
testcase_11 AC 923 ms
1,764 KB
testcase_12 AC 950 ms
1,752 KB
testcase_13 AC 957 ms
1,760 KB
testcase_14 AC 932 ms
1,764 KB
testcase_15 AC 943 ms
1,756 KB
testcase_16 AC 927 ms
1,760 KB
testcase_17 AC 937 ms
1,764 KB
testcase_18 AC 925 ms
1,752 KB
testcase_19 AC 941 ms
1,760 KB
testcase_20 AC 925 ms
1,764 KB
testcase_21 AC 949 ms
1,756 KB
testcase_22 AC 953 ms
1,764 KB
testcase_23 AC 940 ms
1,752 KB
testcase_24 AC 947 ms
1,760 KB
testcase_25 AC 929 ms
1,764 KB
testcase_26 AC 921 ms
1,756 KB
testcase_27 AC 950 ms
1,760 KB
testcase_28 AC 943 ms
1,756 KB
testcase_29 AC 921 ms
1,760 KB
testcase_30 AC 942 ms
1,760 KB
testcase_31 AC 943 ms
1,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define rep(i,n)   FOR(i,0,n)
#define pb emplace_back
typedef long long ll;
typedef pair<int,int> pint;

unsigned long xor128(){
    static unsigned long x=123456789,y=362436069,z=521288629,w=88675123;
    unsigned long t=(x^(x<<11));
    x=y;y=z;z=w;
    return (w=(w^(w >> 19))^(t^(t>>8)));
}
double timeLimit=0.85;
const int64_t CYCLES_PER_SEC=2800000000;
struct Timer {
	int64_t start;
	Timer() { reset(); }
	void reset() { start = getCycle(); }
	void plus(double a) { start -= (a * CYCLES_PER_SEC); }
	inline double get() { return (double)(getCycle() - start) / CYCLES_PER_SEC; }
	inline int64_t getCycle() {
		uint32_t low, high;
		__asm__ volatile ("rdtsc" : "=a" (low), "=d" (high));
		return ((int64_t)low) | ((int64_t)high << 32);
	}
};
int n,k,W0;
int L[501];
string s[61];
vector<vector<int> > g(101,vector<int>(101,0)),tg(101,vector<int>(101,0));
vector<pair<pint,pint> > ans,tmp;
pair<pint,pint> calc(int length){
    int best=-1000100010;
    int lx,rx,ly,ry;
    vector<pair<pint,pint> > cand;
    rep(i,n)rep(j,n-length+1){
        int score=0;
        rep(k,length){
            if(g[i][j+k]==1) ++score;
            else --score;
        }
        if(best<score){
            cand.clear();
            cand.pb(pint(i+1,i+1),pint(j+1,j+length));
            best=score;
        }
        else if(best==score){
            cand.pb(pint(i+1,i+1),pint(j+1,j+length));
        }
    }
    rep(i,n)rep(j,n-length+1){
        int score=0;
        rep(k,length){
            if(g[j+k][i]==1) ++score;
            else --score;
        }
        if(best<score){
            cand.clear();
            cand.pb(pint(j+1,j+length),pint(i+1,i+1));
            best=score;
        }
        else if(best==score){
            cand.pb(pint(j+1,j+length),pint(i+1,i+1));
        }
    }
    int sz=cand.size();
    pair<pint,pint> ret=cand[xor128()%sz];
    ly=ret.first.first,ry=ret.first.second,lx=ret.second.first,rx=ret.second.second;
    FOR(i,ly,ry+1)FOR(j,lx,rx+1) g[i-1][j-1]^=1;
    return make_pair(pint(ly,lx),pint(ry,rx));
}
int get_score(){
    int ret=0;
    rep(i,n)rep(j,n)if(g[i][j]==0) ++ret;
    return ret;
}
int main(){
    Timer timer;
    timer.reset();
    cin>>n>>k;
    rep(i,k) cin>>L[i];
    rep(i,n) cin>>s[i];;
    tmp.resize(k);ans.resize(k);
    rep(i,n)rep(j,n){
        g[i][j]=s[i][j]-'0';
    }
    tg=g;
    int bestscore=-1000100010;
    while(timer.get()<timeLimit){
        rep(i,k){
            pair<pint,pint> ret=calc(L[i]);
            tmp[i]=ret;
            //cout<<ret.first.first<<" "<<ret.first.second<<" "<<ret.second.first<<" "<<ret.second.second<<endl;
        }
        int cur=get_score();
        if(bestscore<cur){
            ans=tmp;bestscore=cur;
        }
        g=tg;
    }
    rep(i,k){
        cout<<ans[i].first.first<<" "<<ans[i].first.second<<" "<<ans[i].second.first<<" "<<ans[i].second.second<<endl;
    }
    return 0;
}
0