水题,判断两堵墙是否可以完全吻合。
#include <stdio.h>
int main()
{
int t, n, a, b;
scanf("%d", &t);
while(t--)
{
scanf("%d", &n);
scanf("%d %d", &a, &b);
int tmp = a - b;
bool mk = 0;
for(int i = 1; i < n; i++)
{
scanf("%d %d", &a, &b);
if(mk) continue;
if(tmp != a - b) mk = 1;
}
if(mk) puts("no");
else puts("yes");
if(t) puts("");
}
return 0;
}