预估难度: Very easy:A、I Easy:D、C Mid:F、G Mid hard:B、J Hard:E、H A 有三种情况: :没有交集,共同痕迹为。 :只有上下的方块有交集,共同痕迹为左右两块。 :上下左右都有交集,共同痕迹为一个十字。 计算对应的图形面积即可。 #include <iostream> #define endl '\n' using namespace std; using LL = long long; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); LL w, ...