QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#625153 | #7900. Gifts from Knowledge | Emotion_Z | WA | 6ms | 40868kb | C++20 | 2.6kb | 2024-10-09 17:41:12 | 2024-10-09 17:41:12 |
Judging History
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 A[ 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 );
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();
for( int i=1; i<=m; i++ ) A[ i ]=0;
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;
for( int i=1; i<=m; i++ ){
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;
}
}
for( int i=1; i<=n; i++ ){
reverse( S[ i ].begin() , S[ i ].end() );
for( int e=0; e<m; e++ ){
if( S[ i ][ e ]=='1' ){
for( auto son:G[ e+1 ] ){
if( son==i ) continue;
//cout<<i<<" "<<son<<endl;
if( (find( son+n )==find( i )&&find( son )==find( i ) )||(find( i+n )==find( son )&&find( son )==find( i ) )) ok=true;
add( son+n , i+n ) , add( son , i );
if( find( son )==find( son+n ) || find( i )==find( i+n )||find( i )==find( son ) ) ok=true;
}
}
}
reverse( S[ i ].begin() , S[ i ].end() );
}
for( int i=1; i<=n; i++ ){
if( find( i )==find( i+n ) ) ok=true;
}
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++) {
// cout<<i<<" "<<dis[i]<<endl;
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: 6ms
memory: 40868kb
input:
3 3 5 01100 10001 00010 2 1 1 1 2 3 001 001
output:
0 0 2
result:
wrong answer 1st numbers differ - expected: '4', found: '0'