比赛 20161114 评测结果 WWWWWWWWWW
题目名称 输出全靠花 最终得分 0
用户昵称 最长上升子序列 运行时间 0.003 s
代码语言 C++ 内存使用 12.07 MiB
提交时间 2016-11-14 11:59:06
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#define long long lnt;
using namespace std;

const int up=40+1,maxN=1000+5;
bool vis[maxN][maxN];
int node[up][up][up][up],n=1;
struct nodes
{
    int x,y,z,w;
    bool operator < (const nodes& b) const
    {
        if(x!=b.x) return x<b.x;
        else if(y!=b.y) return y<b.y;
        else if(z!=b.z) return z<b.z;
        else if(w!=b.w) return w<b.w;
    }
} no[maxN];

int main()
{
    freopen("xumingshi.in","r",stdin);
    freopen("xumingshi.out","w",stdout);
    int dx,dy,dz,dw,mx,y,z,w,sum,ans=2;

    scanf("%d",&n);//printf("%d",n);
    for(int i=0;i<n;i++)
        scanf("%d %d %d %d",&no[i].x,&no[i].y,&no[i].z,&no[i].w);
    printf("%d\n",n);

    return 0;

}