QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#626559 | #7900. Gifts from Knowledge | L_ty | RE | 16ms | 3772kb | C++17 | 2.8kb | 2024-10-10 10:17:20 | 2024-10-10 10:17:23 |
Judging History
answer
#include<iostream>
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define endl "\n"
const int p = 1e9 + 7;
int fpow(int a,int b){//a是底数,b是指数
int ans=1;//初始化答案为1
while(b){//当指数不为0时执行
if(b%2==0){//指数为偶数时,指数除以2,底数乘以2
b/=2;
a=a*a%p;
}else{//指数为奇数时,分离指数,ans乘以底数
ans=ans*a%p;
b--;
}
}
return ans%p;
}
int get(vector<int>& fa, int x) {
if (fa[x] != x)
fa[x] = get(fa, fa[x]);
return fa[x];
}
void solve(){
int n, m;
cin >> n >> m;
vector<string> arr(n );
vector<int> fa(n );
vector<char> s;
bool flag = 0;
s.assign(m , '0');
for (int i = 0; i < fa.size();i++)
fa[i] = i;
auto check = [&](string x) -> bool
{
for (int i = 0; i < x.size();i++)
{
int a = s[i] - '0', b = x[i] - '0';
if((a&b)==1)
return 0;
}
return 1;
};
auto did = [&](string x) -> void
{
for (int i = 0; i < x.size();i++)
{
int a = s[i] - '0', b = x[i] - '0';
s[i] =(char)( (a | b) + '0');
}
};
for (int i = 0; i < n; i++)
{
cin >> arr[i];
if (flag)continue;
if(check(arr[i])){
did(arr[i]);
continue;
}
reverse(arr[i].begin(), arr[i].end());
if(check(arr[i])){
did(arr[i]);
continue;
}
flag = 1;
break;
}
// for (int i = 0; i < m;i++)
// cout << s[i] << " ";
if(flag){
cout << 0 << endl;
return;
}
vector<int> dis(m,-1);
for(int i=0;i<n;i++){
for (int j = 0; j < arr[i].size();j++){
if(arr[i][j]=='1'){
dis[j] = i;
}
}
}
auto merage = [&](int x, int y) -> void
{
int fx = get(fa,x), fy = get(fa,y);
if(fx!=fy){
fa[fy] = fx;
}
};
for (int i = 0; i < m;i++)
// cout << dis[i] << " ";
for (int i = 0; i <= m / 2; i++)
{
int x = dis[i], y = dis[m - i - 1];
// cout << dis[i] << " " << dis[m - i - 1] << endl;
if (x >= 0 && y >= 0)
{
merage(x, y);
}
}
map<int, int> mp;
for (int i = 0;i<n;i++){
mp[fa[i]]=1;
//cout << fa[i] << endl;
}
cout << fpow(2, mp.size())%p << endl;
}
signed main(){
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
int t;
cin>>t;
while(t--){
solve();
}
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3772kb
input:
3 3 5 01100 10001 00010 2 1 1 1 2 3 001 001
output:
4 0 2
result:
ok 3 number(s): "4 0 2"
Test #2:
score: 0
Accepted
time: 16ms
memory: 3512kb
input:
15613 10 10 0000000000 0000000000 0000000000 0000000000 0000000000 0000000000 0000000000 0000000000 0000000000 0000000000 15 8 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 1 5 00000 5 9 000000000 000000000 0000...
output:
1024 32768 2 32 32768 128 32 16 16 2 16384 16384 128 128 32768 8192 128 64 16384 2 4 2 4096 16 4096 1024 32768 32768 16384 8 128 2 16 4096 8192 32768 8192 8192 16 16384 16384 256 128 8 256 8 4096 512 2 4 32 32 2 64 512 1024 32768 32768 2 64 16384 16 8192 16 256 16 64 8192 8192 64 1024 2 32768 2 4 51...
result:
ok 15613 numbers
Test #3:
score: -100
Runtime Error
input:
15759 9 6 000000 000000 000000 000000 000000 000000 000000 000000 000000 5 15 010000000000000 000000000000000 000000000000000 000100000000000 000100000000000 14 12 000000000000 000000000000 000000000000 000000000000 000000000000 000000000000 000000000000 000000000000 000000000000 000000000000 000000...