Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
140666 李承瀚 导弹拦截 C++ 通过 100 3 MS 280 KB 585 2024-03-30 16:59:00

Tests(10/10):


#include <bits/stdc++.h> using namespace std; const int N = 1e5 + 5; int a[N], x, l, dp[N], maxn; int g[N], cnt; int main() { while (cin >> x) a[++l] = x; for (int i = 1; i <= l; i++) { int k = 1; while (k <= cnt && g[k] >= a[i]) k++; if (k > cnt) g[++cnt] = a[i]; else g[k] = a[i]; } cout << cnt<<" "; cnt = 0; for (int i = 1; i <= l; i++) { int k = 1; while (k <= cnt && g[k] < a[i]) k++; if (k > cnt) g[++cnt] = a[i]; else g[k] = a[i]; } cout << cnt << endl; }


测评信息: