摘要:
B - Spot the Difference 难度: ⭐ 题目大意 给定两个矩阵, 找不同 解题思路 数据很小, 暴力就行; 神秘代码 #include<bits/stdc++.h> #define int unsigned long long #define IOS ios::sync_with 阅读全文
摘要:
B - Farthest Point 难度: ⭐ 题目大意 一个坐标系有x个点, 对于每个点找出距离其最远的点; 解题思路 数据很小, 暴力就行; 神秘代码 #include<bits/stdc++.h> #define int long long #define IOS ios::sync_wit 阅读全文