QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#743992 | #8020. Mine Sweeper II | EMTz | WA | 7ms | 68188kb | C++20 | 1.1kb | 2024-11-13 20:31:35 | 2024-11-13 20:31:36 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define ull unsigned long long
using namespace std;
typedef pair<int,int>PII;
typedef pair<int,PII>PPI;
typedef array<int,3>ar;
typedef __int128 i28;
const int N=1e6+100;
const int N1=1e9+9;
const int M=998244353;
const ull mask = std::chrono::steady_clock::now().time_since_epoch().count();
mt19937_64 rng(time(0));
const int M1=19260817;
const int base=233;
const int base1=131;
const int INF = 0x3f3f3f3f;
int sum[N];
string a[N],b[N];
void solve()
{
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++)
{
cin>>a[i];
a[i]=" "+a[i];
}
for(int i=1;i<=n;i++)
{
cin>>b[i];
b[i]=" "+b[i];
}
int cnt=0;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
if(a[i][j]!=b[i][j]) cnt++;
}
}
if(cnt>n*m/2)
{
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
if(a[i][j]=='.')a[i][j]='X';
else a[i][j]='.';
}
}
}
for(int i=1;i<=n;i++) cout<<a[i]<<"\n";
}
signed main()
{
std::ios::sync_with_stdio(false);
cout.tie(0);cin.tie(0);
int _=1;
// cin>>_;
while(_--)
{
solve();
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 7ms
memory: 68188kb
input:
2 4 X..X X.X. X.X. .X..
output:
.XX. .X.X
result:
wrong answer Line " .XX." doesn't correspond to pattern "[.X]{4}"