結果
問題 | No.209 Longest Mountain Subsequence |
ユーザー | 37zigen |
提出日時 | 2018-04-04 02:35:05 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
AC
|
実行時間 | 114 ms / 2,000 ms |
コード長 | 1,104 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 32,640 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 08:37:58 |
合計ジャッジ時間 | 1,136 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
5,248 KB |
testcase_01 | AC | 34 ms
5,376 KB |
testcase_02 | AC | 31 ms
5,376 KB |
testcase_03 | AC | 114 ms
5,376 KB |
testcase_04 | AC | 114 ms
5,376 KB |
testcase_05 | AC | 13 ms
5,376 KB |
ソースコード
module m implicit none integer::n integer::a(100),f(100,100) contains recursive integer function g(s,t)result(res) implicit none integer::s,t integer::i,j,k,dy if(f(s,t)>=0)then res=f(s,t) return end if res=2 dy=a(t)-a(s) do i=t+1,n if(dy>0.and.a(t)-a(s)<a(i)-a(t))then res=max(res,1+g(t,i)) else if(dy>0.and.a(i)<a(t))then res=max(res,1+g(t,i)) else if(dy<0.and.a(s)-a(t)>a(t)-a(i).and.a(t)>a(i))then res=max(res,1+g(t,i)) end if end do f(s,t)=res end function end module program main use m implicit none integer::t,i,j,k,x,y,r,ans read*,t do i=1,t read*,n do j=1,n do k=j+1,n f(j,k)=-1 end do end do read*,(a(j),j=1,n) ans=1 do j=1,n do k=j+1,n ans=max(ans,g(j,k)) end do end do print*,ans end do end program