QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#750576#9621. 连方ucup-team2179#AC ✓18ms11052kbC++201.8kb2024-11-15 15:03:052024-11-15 15:03:06

Judging History

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

  • [2024-11-15 15:03:06]
  • 评测
  • 测评结果:AC
  • 用时:18ms
  • 内存:11052kb
  • [2024-11-15 15:03:05]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long
#define db double
#define pii pair<int, int>
#define ll long long
using namespace std;

int f(char c){
    return (c == '#');
}
char g(int n){
    if(n==0)return '.' ;
    return '#';
}
void solve() {
    int n;
    cin >> n;
    vector<vector<int>> a(9, vector<int>(n + 3));
    auto print = [&]()
    {
        cout << "Yes\n";
        for (int i = 1;i<=7;i++)
        {
            for (int j = 1; j <= n; j++)
                cout << g(a[i][j]);
            cout << '\n';
        }
    };
    auto fan = [&](int u, int v,int k)
    {
        for (int i = 1;i<=n;i++)a[u][i] = a[v][i] ^ k;
    };
    int last[9]{};
    int num[9]{};
    for(int j=1;j<=7;j+=6)
    for (int i = 1; i <= n;i++){
        char u;cin>>u;
        a[j][i] = f(u);
        num[j] += f(u);
    }
    for(int j=1;j<=7;j+=6)
    for (int i = 1; i <= n;i++){
        if(i!=n)
        if(a[j][i+1]==0&&a[j][i]==1)last[j]=i;
        if(i>1)
        if(a[j][i-1]==0&&a[j][i]==1)last[j]=i;
    }    
    if(num[1]==n&&num[7]==n){
        for (int i = 2;i<=6;i++)fan(i, 1, 0);
        print();
        return;
    }
    if(num[1]==0){
        fan(6,7,1);print();return;
    }
    if(num[7]==0){
        fan(2,1,1);print();return;
    }
    if(num[1]==n||num[7]==n){
        cout << "No\n";
        return;
    }
    fan(2,1,1);
    fan(6,7,1);
    a[3][last[1]] = 1;
    a[5][last[7]] = 1;
    if(abs(last[1]-last[7])<=1){
        a[4][last[1]] = 1;
        print();
        return;
    }
    for (int i = min(last[1], last[7]) + 1; i < max(last[1], last[7]);i++)
    a[4][i] = 1;
    print();
}
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: 100
Accepted
time: 0ms
memory: 3820kb

input:

5
4
#..#
.##.
5
##.#.
.#.##
6
######
.####.
27
.######.######.####.#.#####
.####...####..#.......#####
10
##########
##########

output:

Yes
#..#
.##.
...#
...#
..#.
#..#
.##.
Yes
##.#.
..#.#
...#.
...#.
...#.
#.#..
.#.##
No
Yes
.######.######.####.#.#####
#......#......#....#.#.....
......................#....
......................#....
......................#....
#....###....##.#######.....
.####...####..#.......#####
Yes
########...

result:

ok Correct.

Test #2:

score: 0
Accepted
time: 11ms
memory: 4004kb

input:

10000
6
.#..##
..#...
5
#..#.
##...
6
.###.#
...###
17
.####..#######..#
###########.#####
6
..##.#
#.##.#
25
#.##.##############.####.
####################.##.#
9
##.#..##.
##..#####
6
.###.#
##.###
6
###..#
#.####
25
#####################.#.#
######.##################
6
.#.###
.##..#
6
..####
#......

output:

Yes
.#..##
#.##..
....#.
...#..
..#...
##.###
..#...
Yes
#..#.
.##.#
...#.
..#..
.#...
..###
##...
Yes
.###.#
#...#.
.....#
....#.
...#..
###...
...###
Yes
.####..#######..#
#....##.......##.
................#
.............###.
............#....
...........#.....
###########.#####
Yes
..##.#
##..#.
...

result:

ok Correct.

Test #3:

score: 0
Accepted
time: 11ms
memory: 3712kb

input:

10000
41
#######.#######.#########################
################.###.#######.############
6
..#..#
#..##.
6
#.#...
#...#.
6
.#.##.
....##
6
...#.#
##..#.
33
#####.###########################
###########.#####################
6
.##.##
.##.#.
5
..##.
####.
17
#.###.##########.
####.##.#####.##.
5
....

output:

Yes
#######.#######.#########################
.......#.......#.........................
................#........................
.................############............
.............................#...........
................#...#.......#............
################.###.#######.############
Ye...

result:

ok Correct.

Test #4:

score: 0
Accepted
time: 18ms
memory: 3780kb

input:

10000
6
..####
.#....
6
...#.#
#..##.
9
..####.##
######..#
33
#######################.#####..##
######.######.###########.#######
6
####.#
#..##.
6
...###
##.###
25
######.#.#.##############
.#########.##########.###
17
############.####
###############.#
6
#..#.#
#####.
6
.#.###
..#...
49
########...

output:

Yes
..####
##....
..#...
..#...
.#....
#.####
.#....
Yes
...#.#
###.#.
.....#
.....#
....#.
.##..#
#..##.
Yes
..####.##
##....#..
.......#.
.......#.
........#
......##.
######..#
Yes
#######################.#####..##
.......................#.....##..
...............................#.
.................

result:

ok Correct.

Test #5:

score: 0
Accepted
time: 18ms
memory: 3736kb

input:

10000
5
...#.
#####
6
###...
##..#.
9
.#.######
#.#..####
49
######.##########################################
########.#############.##########################
41
###########.#######.#####################
##############.##########################
6
###..#
###.##
49
#################################...

output:

No
Yes
###...
...###
..#...
...#..
....#.
..##.#
##..#.
Yes
.#.######
#.#......
...#.....
....#....
.....#...
.#.##....
#.#..####
Yes
######.##########################################
......#..........................................
.......#.........................................
........########...

result:

ok Correct.

Test #6:

score: 0
Accepted
time: 12ms
memory: 11052kb

input:

2
100000
###.#...#..####...#####..####.#.######.##.##..#..#..####...###.#..##.#.##.####.#.#.###...#.##...####.#.#.####...####.#..##.##.#.#.....####..####..#...#..#.##..#.##.#.....#..#.#.###.#....####...####..##.#.#####..####.##.#.###.#.#....#.##.##...#.######.#..##..##...#.....#....#.####...#...##.#...

output:

Yes
###.#...#..####...#####..####.#.######.##.##..#..#..####...###.#..##.#.##.####.#.#.###...#.##...####.#.#.####...####.#..##.##.#.#.....####..####..#...#..#.##..#.##.#.....#..#.#.###.#....####...####..##.#.#####..####.##.#.###.#.#....#.##.##...#.######.#..##..##...#.....#....#.####...#...##.##.#.....

result:

ok Correct.

Test #7:

score: 0
Accepted
time: 17ms
memory: 10968kb

input:

2
100000
##.####.#..#..#.##..#.#..###..##..#####.....#..##.##.#...#.###..##..#...##...####..#...##...##.......#.#..##.##..###.#.###.##.#########..#...###.####.##...#..#.....#####.....#.####.#####..#.#....#..###.#.##..#..#.##.......#.###.##...####.....######..#.##....#.#.###.#.###.#..#.....####....##...

output:

Yes
##.####.#..#..#.##..#.#..###..##..#####.....#..##.##.#...#.###..##..#...##...####..#...##...##.......#.#..##.##..###.#.###.##.#########..#...###.####.##...#..#.....#####.....#.####.#####..#.#....#..###.#.##..#..#.##.......#.###.##...####.....######..#.##....#.#.###.#.###.#..#.....####....##........

result:

ok Correct.