根据我的主观感受排序 H:蒟蒻wzc的填数游戏知识点:模拟暴力模拟就完事了 #include <bits/stdc++.h> using namespace std; char s[30000]; int g[10][10]; int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1}; inline void solve() { memset(g, 0, sizeof g); int n; cin >> n; unordered_map<char, int> f; f['w'] = 0, f['d'] = 1, ...