結果
問題 | No.366 ロボットソート |
ユーザー | jj |
提出日時 | 2016-09-30 23:21:13 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,625 bytes |
コンパイル時間 | 980 ms |
コンパイル使用メモリ | 37,452 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-29 18:32:59 |
合計ジャッジ時間 | 1,566 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 1 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,820 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
ソースコード
program mainimplicit noneinteger::N,K,i,j,l,m,totallogical::sortableinteger,allocatable::a(:),b(:),sorta(:),sortb(:)data total/0/read *,N,Kallocate(a(N),sorta(N),b(N),sortb(N))read *,asorta = qsort(a)sortable = check_sortable(a,sorta, N, K)if(sortable.eqv..false.) thenprint '(i0)',-1returnend if! print *, a! print *, sortado i=1,MIN(K,N)b = (/(a(j), j=i,N,K)/)sortb = (/(sorta(j),j=i,N,K)/)! print *,b! print *,sortbdo j=1, (N+K-1)/Kdo l=j,(N+K-1)/Kif(sortb(j).eq.b(l))exitend dodo m=l,j+1,-1b(m) = b(m-1)total = total + 1end dob(j) = sortb(j)end doend doprint '(i0)',totalreturncontainsfunction check_sortable(a,sorta, N, K) result(sortable)integer,intent(in)::N,Kinteger,allocatable,intent(in)::a(:),sorta(:)logical::sortabledo i=1,N,Ksortable = .false.do j=MOD(i,K),N,Kif(a(j).eq.sorta(i)) thensortable = .true.exitend ifend doif(sortable .eqv. .false.) thenreturnend ifend doend function check_sortablerecursive function qsort(x) result(y)integer,intent(in) ::x(:)integer,allocatable::y(:)integer::pivot,totaltotal = size(x)if (total <=1) theny = xelsepivot = x(total/2)y = [qsort(pack(x, x .lt. pivot)), &pack(x, x .eq. pivot), &qsort(pack(x, x .gt. pivot))]endifend function qsortend program main