結果

問題 No.2731 Two Colors
ユーザー kino0402kino0402
提出日時 2024-04-19 22:57:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 4,808 bytes
コンパイル時間 4,585 ms
コンパイル使用メモリ 242,868 KB
実行使用メモリ 66,176 KB
最終ジャッジ日時 2024-10-11 16:57:40
合計ジャッジ時間 18,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,572 ms
66,176 KB
testcase_01 AC 1,564 ms
66,176 KB
testcase_02 AC 1,564 ms
66,176 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 28 ms
5,248 KB
testcase_05 AC 20 ms
5,248 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 327 ms
19,928 KB
testcase_10 RE -
testcase_11 AC 393 ms
26,364 KB
testcase_12 AC 320 ms
19,640 KB
testcase_13 AC 317 ms
22,676 KB
testcase_14 AC 142 ms
11,392 KB
testcase_15 RE -
testcase_16 AC 145 ms
12,628 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 157 ms
13,172 KB
testcase_20 AC 205 ms
13,440 KB
testcase_21 AC 39 ms
6,016 KB
testcase_22 RE -
testcase_23 AC 89 ms
8,832 KB
testcase_24 AC 47 ms
6,140 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 RE -
testcase_27 AC 351 ms
22,264 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 125 ms
10,624 KB
testcase_31 AC 89 ms
9,216 KB
testcase_32 RE -
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:115:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
  115 | main(){
      | ^~~~

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all> 
using namespace std;
using namespace atcoder;
using ll=long long;
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#define speedup std::cin.tie(0)->sync_with_stdio(0);
#define _GLIBCXX_DEBUG //優先度付きキュー使って時間制限厳しい場合コメントアウト
#define int ll
#define int_max 2147483647
#define int_min -2147483647
#define uint_max 4294967295
#define ll_max 9223372036854775807
#define ll_min -9223372036854775807
#define ull_max 18446744073709551615
#define rep(i,n) for(ll i=0;i<(n);i++)
#define reps(i,n) for(ll i=1;i<=(n);i++)
#define REP(i,j,n) for(ll i=(j);i<(n);i++)
#define all(a) (a).begin(), (a).end()
#define veci vector<int>
#define veci2 vector<vector<int>>
//veci2 A(a,veci(b))
#define vecll vector<ll>
#define vecll2 vector<vector<ll>>
#define vecst vector<string>
#define repc(i,n,A) rep(i,n)cin>>A[i]
#define repc2(i,n,A,B) rep(i,n)cin>>A[i]>>B[i]
#define repc2vec(i,j,a,b,A) rep(i,a)rep(j,b)cin>>A[i][j]
#define repair(i,n,A) rep(i,n)cin>>A[i].F>>A[i].S>>
#define ST(A) sort(all(A))
#define RV(A) reverse(all(A));
#define pb push_back
#define mp make_pair
#define Endl endl
#define F first
#define S second
#define yes(b) ((b)?"yes":"no")
#define Yes(b) ((b)?"Yes":"No")
#define YES(b) ((b)?"YES":"NO")
#define TA(b) ((b)?"Takahashi":"Aoki")
#define AB(b) ((b)?"Alice":"Bob")
template <typename T> inline T gcd(T a,T b) {return (b==0)?a:gcd(b,a%b);}//最大公約数
template <typename T> inline T lcm(T a, T b) {return (a*b)/gcd(a,b);}//最小公倍数
veci dx={-1,0,1,-1,1,-1,0,1};
veci dy={-1,-1,-1,0,0,1,1,1};
veci DX={-1,1,0,0};
veci DY={0,0,-1,1};
ll mod=998244353;
//mod=1000000007;
//ここからコード入力(関数使用時用)

//関数
/*ll nibutan(ll K){
  //二分探索 a=要素数 [m]の前配列名
    ll ng=-1;
    ll ok=a;
    while(ok-ng>1){
        ll m=(ng+ok)/2;
        if([m]>K)ok=m;
        else ng=m;
    }
    return ok;
}*/
vector<pair<int,int>>soinsuubunkai(int N){
  vector<pair<int,int>>res;
  for(int a=2;a*a<=N;a++){
    if(N%a!=0)continue;
    int ex=0; // 指数
    // 割れる限り割り続ける
    while(N%a==0){
      ex++;
      N/=a;
    }
    // その結果を push
    res.pb({a, ex});
  }
    // 最後に残った数について
  if(N!=1)res.pb({N,1});
  return res;
  //N=6 {2,1} {3,1}(2^1+3^1)のようになる autoで受け取ろう
  
}
/*//コンビネーション
ll C_MAX=510000;
vecll fac(C_MAX);
vecll finv(C_MAX);
vecll inv(C_MAX);
// テーブルを作る前処理
void COMinit(){
  fac[0]=fac[1]=1;
  finv[0]=finv[1]=1;
  inv[1]=1;
  REP(i,2,C_MAX){
    fac[i]=fac[i-1]*i%mod;
    inv[i]=mod-inv[mod%i]*(mod/i)%mod;
    finv[i]=finv[i-1]*inv[i]%mod;
  }
}

//二項係数計算
ll COM(ll n,ll k){
  if(n<k)return 0;
  if(n<0||k<0)return 0;
  return fac[n]*(finv[k]*finv[n-k]%mod)%mod;
}
void kitaitimod(ll a,ll b){
  //a/b
  ll denominator=inv_mod(b,mod);
  cout<<a*denominator%mod<<endl;
  return;
}*/
//ここからコード入力(   ´・ω・`    )
main(){
  ll A,B;
  cin>>A>>B;
  ll now1=1,now2=1,now3=A,now4=B,end=0;
  vecll2 C(A+2,vecll(B+2));
  rep(i,A+2)rep(j,B+2)C[i][j]=-1;
  reps(i,A)reps(j,B)cin>>C[i][j];
  priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>>D;
  set<ll>D2;
  priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>>E;
  set<ll>E2;
  vecll2 color(A+2,vecll(B+2));
  D.push(mp(0,1*(A+2)+1));
  E.push(mp(0,A*(A+2)+B));
  D2.insert(1*(A+2)+1);
  E2.insert(A*(A+2)+B);
  rep(i,A*B){
    if(i%2==0){
      now1=D.top().S/(A+2);
      now2=D.top().S%(A+2);
      D.pop();
      color[now1][now2]=1;
      rep(j,4){
        if(color[now1+DX[j]][now2+DY[j]]==2){
          end++;
          break;
        }
        if(!(D2.count((now1+DX[j])*(A+2)+now2+DY[j]))&&C[now1+DX[j]][now2+DY[j]]!=-1){
          D2.insert((now1+DX[j])*(A+2)+now2+DY[j]);
          D.push(mp(C[now1+DX[j]][now2+DY[j]],(now1+DX[j])*(A+2)+now2+DY[j]));
        }
      }
    }
    if(i%2==1){
      now3=E.top().S/(A+2);
      now4=E.top().S%(A+2);
      E.pop();
      color[now3][now4]=2;
      rep(j,4){
        if(color[now3+DX[j]][now4+DY[j]]==1){
          end++;
          //cout<<"!!!"<<now3+DX[j]<<" "<<now4+DY[j]<<endl;
          break;
        }
        if(!(E2.count((now3+DX[j])*(A+2)+now4+DY[j]))&&C[now3+DX[j]][now4+DY[j]]!=-1){
          E2.insert((now3+DX[j])*(A+2)+now4+DY[j]);
          E.push(mp(C[now3+DX[j]][now4+DY[j]],(now3+DX[j])*(A+2)+now4+DY[j]));
        }
      }
    }
    /*if(i%2==0)cout<<i<<" "<<D.top().F<<" "<<D.top().S<<endl;
    else cout<<i<<" "<<E.top().F<<" "<<E.top().S<<endl;*/
    if(end==1){
      cout<<i-1<<endl;
      break;
    }
  }
  /*rep(i,A+2){
    rep(j,B+2)cout<<color[i][j];
    cout<<Endl;
  }*/
}
0