QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#625038#7900. Gifts from KnowledgeWaO_oWA 8ms37248kbC++203.3kb2024-10-09 17:14:232024-10-09 17:14:24

Judging History

你现在查看的是最新测评结果

  • [2024-10-09 17:14:24]
  • 评测
  • 测评结果:WA
  • 用时:8ms
  • 内存:37248kb
  • [2024-10-09 17:14:23]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define deg( x ) cout<<""#x"="<<x<<endl
#define endl '\n'
#define pll pair<int,int>
#define fr frist
#define se second

const int N=1e6+10;
const int mod=1e9+7;

string S[ N ];

int dis[ N*2 ];

void init( int n ){
    for( int i=1; i<=n; i++ ) dis[ i ]=i;
}

int find( int x ){
    if( x==dis[ x ] ) return x;
    dis[ x ]=find( dis[ x ] );
    return find( dis[ x ] );
}

void add( int i , int j ){
    int a=find( i ) , b=find( j );
    if( b>a ) swap( a , b );
    dis[ a ]=b;
}

vector<int> G[ N ];

void solve(  ){
    int n,m;
    cin>>n>>m;

    for( int i=1; i<=m; i++ ) G[ i ].clear();
    init( n*2 );

    for( int i=1; i<=n; i++ ){
        cin>>S[ i ];
        for( int j=0; j<m; j++ ){
            if( S[ i ][ j ]=='1' ){
//                G[ m-j ].emplace_back( i );
                G[ j+1 ].emplace_back( i );
            }
        }
    }

    bool ok=false;
    //if( m&1 && G[ ( m+1 )/2 ].size()>=2 ) ok=true;

    for( int i=1; i<=m; i++ ){
        //if( G[ i ].size()+G[ m-i+1 ].size()>=3 ) ok=true;
        if( ok ) break;
        for( int e=1; e<G[ i ].size(); e++ ){
            int a=G[ i ][ 0 ] , b=G[ i ][ e ];
            //if( a==b ) continue;
            //cout<<a<<" "<<b<<endl;
            add( a+n , b ) , add( a , b+n );
            if( find( a+n )==find( b+n ) || find( a )==find( b ) ) ok=true;

            a=G[ i ][ e-1 ];
            add( a+n , b ) , add( a , b+n );
            if( find( a+n )==find( b+n ) || find( a )==find( b ) ) ok=true;
        }

    }

    for( int i=1; i<=n; i++ ){
        reverse( S[ i ].begin() , S[ i ].end() );
        if( ok ) break;
        for( int e=0; e<m; e++ ){
            if( ok ) break;
            if( S[ i ][ e ]=='1' ){
                for( auto son:G[ e+1 ] ){
                    if( son==i ) continue;
                    //cout<<i<<" "<<son<<endl;
                    add( son , i ); add( son+n , i+n );
                    if( find( son+n )==find( i ) || find( i+n )==find( son ) ) ok=true;
                    //if( find( son+n )==find( i+n ) || find( i )==find( son ) ) continue;
                }

            }
        }

        reverse( S[ i ].begin() , S[ i ].end() );
    }

    if( ok ) cout<<0<<endl;
    else {
        int ans = 1;

//        init( n );
//
//        for( int i=1; i<=n; i++ ){
//            for( int j=0; j<m; j++ ){
//                if( S[ i ][ j ]=='1' ){
//                    G[ m-j ].emplace_back( i );
//                    //G[ j+1 ].emplace_back( i );
//                }
//            }
//        }
//
//        for( int i=1; i<=m; i++ ){
//            for( int j=1; j<G[ i ].size(); j++ ){
//                add( G[ i ][ j ] , G[ i ][ 0 ] );
//            }
//        }

        for( int i=1; i<=n; i++ ){
            if ( dis[ i ] == i ) {
                //if( cnt[ find( i ) ]==1 )
                ans *= 2, ans %= mod;
                //else ans*=cnt[ find( i ) ], ans%=mod;
            }
        }
        cout << ans << endl;
    }

}

signed main() {
    ios::sync_with_stdio( 0 );
    cin.tie( 0 ); cout.tie( 0 );

    int T=1;
    cin>>T;

    while( T-- ){
        solve(  );
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 8ms
memory: 37248kb

input:

3
3 5
01100
10001
00010
2 1
1
1
2 3
001
001

output:

4
0
4

result:

wrong answer 3rd numbers differ - expected: '2', found: '4'