結果
問題 | No.497 入れ子の箱 |
ユーザー | kkty |
提出日時 | 2017-11-06 21:11:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,278 bytes |
コンパイル時間 | 1,403 ms |
コンパイル使用メモリ | 172,852 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-05-03 06:23:59 |
合計ジャッジ時間 | 4,696 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 65 ms
8,960 KB |
testcase_04 | AC | 94 ms
8,832 KB |
testcase_05 | AC | 91 ms
8,832 KB |
testcase_06 | AC | 94 ms
8,576 KB |
testcase_07 | AC | 96 ms
8,704 KB |
testcase_08 | AC | 97 ms
8,576 KB |
testcase_09 | AC | 101 ms
8,468 KB |
testcase_10 | AC | 106 ms
8,576 KB |
testcase_11 | AC | 99 ms
8,448 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 88 ms
8,448 KB |
testcase_19 | AC | 87 ms
8,448 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 56 ms
6,944 KB |
testcase_24 | AC | 59 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 74 ms
6,944 KB |
testcase_31 | AC | 74 ms
6,940 KB |
ソースコード
#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; typedef vector<vector<ll>> Graph; typedef vector<pii> vpii; bool contains(vi a,vi b) { sort(ALL(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; Graph G(N); vi incoming(N); { vvi v(N,vi(3)); REP(i,N) cin>>v[i][0]>>v[i][1]>>v[i][2]; REP(i,N) { REP(j,N) { if(contains(v[i],v[j])) { G[i].PB(j); incoming[j]++; } } } } ll ans=0; REP(root,N) { vi cnt(N,0); vi in(incoming); queue<ll> q; q.push(root); cnt[root]=1; while(q.size()) { ll from=q.front(); q.pop(); for(ll to:G[from]) { in[to]--; if(in[to]==0) q.push(to); cnt[to]=max(cnt[to],cnt[from]+1); } } for(ll i:cnt) ans=max(ans,i); } cout<<ans<<endl; }