結果

問題 No.2291 Union Find Estimate
ユーザー kzyKTkzyKT
提出日時 2023-05-05 21:52:34
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,958 bytes
コンパイル時間 2,129 ms
コンパイル使用メモリ 165,632 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-05-02 15:59:29
合計ジャッジ時間 6,267 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 WA -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void Main()’:
main.cpp:15:38: warning: ‘n’ is used uninitialized [-Wuninitialized]
   15 | #define REP(i,m,n) for(ll i=(ll)(m);i<(ll)(n);i++)
      |                                      ^
main.cpp:42:3: note: in expansion of macro ‘REP’
   42 |   REP(i,1,n+1) d[i]=d[i-1]*10%MAX;
      |   ^~~
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],d[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;
  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