PasteBoard

9次阅读
10 条评论

这里是 [剪贴板]

 0
评论(10 条评论)
2023-12-06 11:04:31 回复
2023-12-06 16:44:51 回复
#include<bits/stdc++.h>
//P1191
using namespace std;
typedef long long ll;
const int N = 160;
int a[N][N];
int stat[N][N];
char s[200];
int n;
int main()
{
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    cin >> n;
    for(int i = 1; i <= n; i++) {
        cin >> s + 1;
        for(int j = 1; j <= n; j++) {
            a[i][j] = s[j] == 'W' ? 0 : 1;
            // stat[i][j] = a[i][j] + a[i - 1][j - 1] - a[i - 1][j] - a[i][j - 1];
        }
    }
    for(int i = 1; i <= n; i++) {
        for(int j = 1; j <= n; j++) {
            if(a[i][j] == 0) {//当前的是白色,作为左上角
                int stats = i;
                int tmpcnt;
                for(int k = i + 1; k <= n; k++) {
                    if(a[k][j] == 0) stats = k;
                }
                tmpcnt = stats;

            }
        }
    }
    return 0;
}
 Windows  Opera  中国浙江省杭州市华数传媒
Tz
2023-12-13 10:48:27 回复

VCB-S https://vcb-s.com/

末日 https://share.acgnx.se/

dmhy镜像 https://dmhy.myheartsite.com/

 Windows  Chrome  中国浙江省杭州市华数传媒
Z
2023-12-27 10:29:52 回复

https://zhuanlan.zhihu.com/p/106057556 知乎 on VSCode

 Windows  Chrome  中国浙江省杭州市华数传媒
TZ
2024-01-17 11:52:05 回复

pandas指南 https://blog.csdn.net/qq_42415326/article/details/89678833

 Windows  Chrome  中国浙江省杭州市华数传媒
114514
2024-05-26 09:00:18 回复

12805576

 Windows  Chrome  中国浙江省杭州市华数传媒