結果

問題 No.2291 Union Find Estimate
ユーザー kzyKTkzyKT
提出日時 2023-05-05 21:50:42
言語 C++11
(gcc 11.4.0)
結果
MLE  
実行時間 -
コード長 1,961 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 165,120 KB
実行使用メモリ 816,256 KB
最終ジャッジ日時 2024-05-02 15:55:55
合計ジャッジ時間 4,625 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void Main()’:
main.cpp:41:9: warning: ‘n’ is used uninitialized [-Wuninitialized]
   41 |   ll d[n+1];
      |        ~^~
main.cpp:40:6: note: ‘n’ declared here
   40 |   ll n,T;
      |      ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define R cin>>
#define ln cout<<'\n'
#define ll long long
#define in(a) insert(a)
#define pb(a) push_back(a)
#define pd(a) printf("%.12f\n",a)
#define mem(a) memset(a,0,sizeof(a))
#define all(c) (c).begin(),(c).end()
#define iter(c) __typeof((c).begin())
#define rrep(i,n) for(ll i=(ll)(n)-1;i>=0;i--)
#define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++)
#define rep(i,n) REP(i,0,n)
#define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++)
ll check(ll n,ll m,ll x,ll y){return x>=0&&x<n&&y>=0&&y<m;}void pr(){ln;}
template<class A,class...B>void pr(const A &a,const B&...b){cout<<a<<(sizeof...(b)?" ":"");pr(b...);}
template<class A>void PR(A a,ll n){rep(i,n)cout<<(i?" ":"")<<a[i];ln;}
const ll MAX=998244353,MAXL=1LL<<61,dx[8]={-1,0,1,0,-1,-1,1,1},dy[8]={0,1,0,-1,-1,1,1,-1};
typedef pair<ll,ll> P;

ll p[200001],r[200001],c[200001],cnt;
void init(ll n){rep(i,n)p[i]=i,r[i]=0,c[i]=-1;}
int find(int x){return (p[x]==x)?x:(p[x]=find(p[x]));}
void unite(int x,int y) {
  x=find(x),y=find(y);
  if(x==y)return;
  ll cx=c[x],cy=c[y];
  if(cx==-1||cy==-1) cnt--;
  if(cx!=cy&&cx>=0&&cy>=0) cnt=-1;
  if(r[x]<r[y])p[x]=y;
  else{p[y]=x;if(r[x]==r[y])r[x]++;}
  c[find(x)]=max(cx,cy);
}
bool same(int x,int y){return find(x)==find(y);}

void Main() {
  ll n,T;
  ll d[n+1];
  d[0]=1;
  REP(i,1,n+1) d[i]=d[i-1]*10%MAX;
  cin >> n >> T;
  init(n);
  cnt=n;
  set<ll> se;
  while(T--) {
    string s;
    cin >> s;
    vector<ll> v[26];
    rep(i,n) {
      if(isalpha(s[i])) {
        v[s[i]-'a'].pb(i);
      } else if(isdigit(s[i])) {
        if(c[find(i)]!=-1&&c[find(i)]!=s[i]-'0') cnt=-1;
        if(c[find(i)]==-1) cnt--;
        c[find(i)]=s[i]-'0';
      }
    }
    rep(i,26) {
      REP(j,1,v[i].size()) unite(v[i][0],v[i][j]);
    }
    if(cnt<0) {
      pr(0);
      continue;
    }
    pr(d[cnt]);
  }
}

int main(){ios::sync_with_stdio(0);cin.tie(0);Main();return 0;}
0