結果

問題 No.307 最近色塗る問題多くない?
ユーザー 小指が強い人小指が強い人
提出日時 2016-08-31 18:55:35
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 4,015 bytes
コンパイル時間 2,467 ms
コンパイル使用メモリ 178,920 KB
実行使用メモリ 813,916 KB
最終ジャッジ日時 2024-11-14 13:14:56
合計ジャッジ時間 35,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,448 KB
testcase_01 AC 1 ms
13,640 KB
testcase_02 AC 1 ms
26,492 KB
testcase_03 AC 1 ms
13,636 KB
testcase_04 AC 3 ms
24,488 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 438 ms
6,820 KB
testcase_08 TLE -
testcase_09 AC 833 ms
6,816 KB
testcase_10 AC 16 ms
6,816 KB
testcase_11 AC 225 ms
8,160 KB
testcase_12 WA -
testcase_13 AC 131 ms
6,816 KB
testcase_14 AC 5 ms
6,820 KB
testcase_15 AC 11 ms
6,816 KB
testcase_16 WA -
testcase_17 AC 51 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 AC 232 ms
16,616 KB
testcase_23 AC 1,183 ms
17,664 KB
testcase_24 AC 463 ms
17,536 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 136 ms
19,200 KB
testcase_28 TLE -
testcase_29 AC 42 ms
6,692 KB
testcase_30 AC 1,383 ms
18,432 KB
testcase_31 AC 154 ms
19,200 KB
testcase_32 AC 143 ms
16,640 KB
testcase_33 AC 15 ms
6,688 KB
testcase_34 AC 42 ms
6,688 KB
testcase_35 AC 43 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
 
typedef long long ll;
typedef unsigned long long ull;
typedef vector<int> veci;
typedef vector<ll> vecll;
typedef vector<string> vecs;
template<class T,class U> using Hash=unordered_map<T,U>;
 
#define REP(i, a, n) for(ll i = a; i < (ll)(n); i++)
#define RREP(i, a, n) for(ll i = n-1; i >= (ll)(a); i--)
#define rep(i, n) REP(i, 0, n)
#define rrep(i, n) RREP(i, 0, n)
#define MD 1000000007
#define _SPLIT " "
 
template<class T> T read(){T a;cin >> a;return a;}
template<class T> void read(T& a){cin >> a;}
template<class T,class ...Args> void read(T& a, Args&... args){cin >> a; read(args...);} 
template<class T> void rarr(T a, int n){for(int i = 0; i < n; i++) {cin >> a[i];}}
template<class T> void write(T a){cout << setprecision(12) << a << endl;}
template<class T,class ...Args> void write(T a, Args... args){cout << setprecision(12) << a << _SPLIT; write(args...);}
template<class T> void warr(vector<T> a, const char* c = " "){cout << a[0];for(int i = 1; i < (int)a.size(); i++)cout << c << a[i];cout << endl;;}
template<class T> void warr(T a, int n, const char* c = " "){cout << a[0];for(int i = 1; i < n; i++)cout << c << a[i];cout << endl;}
void split(string s, string delim, veci& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(atoi(s.substr(pos).data()));break;}else {result.push_back(atoi(s.substr(pos, p - pos).data()));}pos = p + delim.size();}}
void split(string s, string delim, vecs& result){result.clear();string::size_type pos = 0;while(pos != string::npos){string::size_type p = s.find(delim, pos);if(p == string::npos){result.push_back(s.substr(pos));break;}else {result.push_back(s.substr(pos, p - pos));}pos = p + delim.size();}}
ll gcd(ll a, ll b){while(true){ll k = a % b;if(k == 0)return b;a = b;b = k;}}
ll comb(ll n, ll m){ll p=1;m=min(m,n-m);for(ll i=1;i<=m;i++){p*=n-i+1;p/=i;}return p;}

struct Info{
    Info(int c):
    color(c),n(1){}
    int color;
    Info* root=nullptr;
    unordered_set<Info*> st;
    int n;
};

int h,w;
int a[200][200];
Info* p[200][200]={0};
int dx[]={1,0,-1,0};
int dy[]={0,1,0,-1};

typedef pair<int,int> pai;

void paint(int sx,int sy,Info* info){
    queue<pai> q;
    q.push(pai(sx,sy));
    if(info!=nullptr)
        p[sy][sx]=info;
    int at=a[sy][sx];
    Info* my_info=p[sy][sx];
    bool vis[200][200]={0};
    while(!q.empty()){
        pai tp=q.front();
        q.pop();
        vis[tp.second][tp.first]=true;
        rep(i,4){
            int cx=tp.first+dx[i];
            int cy=tp.second+dy[i];
            if(cx<0||cx>=w||cy<0||cy>=h)continue;
            if(vis[cy][cx])continue;
            if(info!=nullptr&&at==a[cy][cx]){
                p[cy][cx]=info;
                info->n++;
                q.push({cx,cy});
            }
            if(info==nullptr){
                if(at==a[cy][cx])q.push({cx,cy});
                else my_info->st.insert(p[cy][cx]);
            }
        }
    }
}

Info* find_root(Info* info){
    while(info->root!=nullptr){
        info=info->root;
    }
    return info;
}

int main(void)
{
    cin>>h>>w;
    rep(i,h)rep(j,w)cin>>a[i][j];
    rep(i,h)rep(j,w)if(p[i][j]==nullptr)paint(j,i,new Info(a[i][j]));
    rep(i,h){
        bool find=false;
        rep(j,w){
            if(p[i][j]->st.size()==0)paint(j,i,nullptr);
            if(p[i][j]->st.size()==0){find=true;break;}
        }
        if(find)break;
    }
    int q;
    read(q);
    rep(i,q){
        int y,x,c;
        read(y,x,c);
        y--;x--;
        Info* root=find_root(p[y][x]);
        if(root->color==c)continue;
        auto st=root->st;
        root->color=c;
        root->st.clear();
        for(auto at1:st){
            at1->root=root;
            for(auto at2:at1->st)
                if(at2!=root)root->st.insert(at2);
        }
    }
    rep(i,h){
        rep(j,w)cout<<((j==0)?"":" ")<<find_root(p[i][j])->color;
        cout<<endl;
    }
    return 0;
}
0