NOI:2704 尋找平面上的極大點
阿新 • • 發佈:2019-02-03
題目連結:http://noi.openjudge.cn/ch0406/2704/
題意:根據提示,只有位於單獨顏色上的點或者說只有右上角的點才是極大點,所以我對每一個點與x和y軸組成的矩形進行標記,將其中每個點的標記值++,最後只有標記值為1的點,才是我們要找的點
#include <stdio.h> #include <iostream> #include <string> #include <cmath> #include <algorithm> #include <vector> using namespace std; struct point { int x,y; point(){ } point(int x1,int y1){ x=x1; y=y1; } }; bool compare(point a,point b){//按照x值排序 return a.x<b.x; } int main(){ int a[105][105]; vector<point> all; for(int i=0;i<105;i++){ for(int j=0;j<105;j++){ a[i][j]=0; } } int n; cin>>n; while(n--){ int x,y; cin>>x>>y; all.push_back(point(x,y)); int tmp=a[x][y]; for(int i=0;i<=x;i++){//將該x和y範圍內的矩形標記 for(int j=0;j<=y;j++){ a[i][j]++; } } a[x][y]=tmp+1; } sort(all.begin(),all.end(),compare); for(int i=0;i<all.size();i++){//按照x值從小到大檢查 if(a[all[i].x][all[i].y]==1){ cout<<"("<<all[i].x<<","<<all[i].y<<")"; if(i!=all.size()-1)cout<<","; } } cout<<endl; return 0; }