A.小紅進地下城
思路:
簽到,判斷數字是不是相同即可得出答案
Code:
#include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int a, b; cin >> a >> b; cout << (a == b ? "Yes" : "No"); return 0; }
B.小紅打怪
思路:
給你一個n,m的矩陣,你的'W'、'S'、'A'、'D' 作為你攻擊直線的方向,只要列舉一下即可
Code: