CodeFoeces-165A

题目

原题链接:A. Supercentral Point

题意

给出n个坐标点,问其中有几个坐标点上、下、左、右方向均有其他点。

代码

#include
using namespace std;
struct node{
    int x,y;
}s[200];
int main() {
    int n;
    cin>>n;
    for(int i=0;i>s[i].x>>s[i].y;
    }
    int ans=0;
    for(int i=0;is[j].y) fd=1;
            if(s[i].x>s[j].x && s[i].y==s[j].y) fl=1;
            if(s[i].x

你可能感兴趣的:(CodeFoeces-165A)