結果

問題 No.694 square1001 and Permutation 3
ユーザー cielciel
提出日時 2018-06-10 01:27:50
言語 Crystal
(1.11.2)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 332 bytes
コンパイル時間 15,718 ms
コンパイル使用メモリ 302,816 KB
実行使用メモリ 45,500 KB
最終ジャッジ日時 2024-06-30 19:32:51
合計ジャッジ時間 63,521 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

W=[0]*9**6
a=ARGF.gets_to_end.split.map(&.to_i)
n=a.shift
z=(1..n).to_a.sort{|i,j|a[i-1]!=a[j-1] ? a[i-1]<=>a[j-1]: i<=>j}
r=0_i64
i=n
while 0<=(i-=1)
k=z[i];while k>0;r+=W[k];k&=k-1 end
k=z[i];while k<=n;W[k]+=1;k+=k&-k end
end
b=a.sort
n.times{|i|puts r;r-=((0...n).bsearch{|j|a[i]<=b[j]}||n)-n+((0...n).bsearch{|j|a[i]<b[j]}||n)}
0