結果
問題 | No.979 Longest Divisor Sequence |
ユーザー | どらら |
提出日時 | 2020-01-31 23:09:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 970 bytes |
コンパイル時間 | 1,672 ms |
コンパイル使用メモリ | 177,172 KB |
実行使用メモリ | 21,944 KB |
最終ジャッジ日時 | 2024-09-17 10:23:00 |
合計ジャッジ時間 | 5,683 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
11,784 KB |
testcase_01 | AC | 20 ms
8,440 KB |
testcase_02 | AC | 29 ms
9,208 KB |
testcase_03 | AC | 16 ms
7,948 KB |
testcase_04 | AC | 53 ms
15,392 KB |
testcase_05 | AC | 27 ms
8,956 KB |
testcase_06 | AC | 31 ms
9,856 KB |
testcase_07 | AC | 30 ms
9,084 KB |
testcase_08 | AC | 54 ms
15,392 KB |
testcase_09 | AC | 31 ms
9,724 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 9 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; int main(){ int N; cin >> N; vector<int> v; rep(i,N){ int a; cin >> a; v.push_back(a); } unordered_map<int,int> m; int ret = 1; rep(i,N){ if(m.count(v[i]) == 0){ int p = 2; while(p*v[i]<=300000){ if(m.count(p*v[i]) == 0){ m[p*v[i]] = 2; } p++; } }else{ ret = max(ret, m[v[i]]); int p = 2; while(p*v[i]<=300000){ if(m.count(p*v[i]) == 0){ m[p*v[i]] = m[v[i]]+1; }else{ if(m[p*v[i]] < m[v[i]]+1){ m[p*v[i]] = m[v[i]]+1; } } p++; } } } cout << ret << endl; return 0; }