結果

問題 No.497 入れ子の箱
ユーザー kkty
提出日時 2017-11-06 20:20:55
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 944 bytes
コンパイル時間 1,354 ms
コンパイル使用メモリ 164,100 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 04:04:11
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i,n) FOR(i,0,n)
#define FOR(i,a,b) for(ll i=a;i<b;i++)
#define PB push_back
#define LB lower_bound
#define UB upper_bound
#define PQ priority_queue
#define UM unordered_map
#define ALL(a) (a).begin(),(a).end()
#define MOD 1000000007
typedef vector<ll> vi;
typedef vector<vector<ll>> vvi;
const ll INF = (1ll << 30);
typedef pair<ll,ll> pii;
struct Edge{ ll s,t,c; };
typedef vector<vector<ll>> Graph;
typedef vector<pii> vpii;

bool contains(vi a,vi b) {
  do {
    if(a[0]>b[0]&&a[1]>b[1]&&a[2]>b[2]) return true;
  } while(next_permutation(ALL(b)));
  return false;
}

int main() {
  ll N; cin>>N;
  vvi v(N,vi(3)); REP(i,N) cin>>v[i][0]>>v[i][1]>>v[i][2];
  vector<ll> cnt(N,1);
  REP(i,N) {
    REP(j,N-1) {
      if(contains(v[i],v[j])) {
        cnt[i]=max(cnt[i],cnt[j]+1);
      }
    }
  }
  ll ans=0;
  for(ll i:cnt) ans=max(ans,i);
  cout<<ans<<endl;
}
0