結果
問題 | No.121 傾向と対策:門松列(その2) |
ユーザー | 6soukiti29 |
提出日時 | 2017-09-02 20:09:51 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 1,096 ms / 5,000 ms |
コード長 | 1,524 bytes |
コンパイル時間 | 3,440 ms |
コンパイル使用メモリ | 65,944 KB |
実行使用メモリ | 88,952 KB |
最終ジャッジ日時 | 2024-06-30 03:07:14 |
合計ジャッジ時間 | 8,783 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
12,120 KB |
testcase_01 | AC | 46 ms
13,076 KB |
testcase_02 | AC | 6 ms
9,508 KB |
testcase_03 | AC | 337 ms
53,132 KB |
testcase_04 | AC | 1,096 ms
88,952 KB |
testcase_05 | AC | 450 ms
50,816 KB |
testcase_06 | AC | 510 ms
54,860 KB |
testcase_07 | AC | 603 ms
49,920 KB |
testcase_08 | AC | 604 ms
54,888 KB |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport] /home/judge/data/code/Main.nim(1, 26) Warning: imported and not used: 'math' [UnusedImport]
ソースコード
import sequtils,strutils,math,algorithm type binaryIndexTree[I:static[int]] = array[I + 1,int] proc add(BIT :var binaryIndexTree,i : int, a : int)= var index = i while BIT[0] >= index: BIT[index] += a index += ((index xor (index - 1)) and index) proc sum(BIT : binaryIndexTree, i : int):int = var index = i while index > 0: result += BIT[index] index = (index and (index - 1)) proc scanf(frmt: cstring) {.varargs, importc, header: "<stdio.h>".} type item = tuple[index, size : int] var N = stdin.readline.parseInt T : array[1000_001, int] A = newSeq[item](N) for n in 0..<N: scanf("%d",addr T[n]) A[n] = (n, T[n]) A = A.sortedByIt(it.size) var i : int = 1 for j, a in A: if j == 0: T[a.index] = i elif a.size == A[j - 1].size: T[a.index] = i else: i += 1 T[a.index] = i var BIT,SBIT : binaryIndexTree[1_000_001] Sr,Sl,S : array[1_000_001,int] BIT[0] = 1_000_001 SBIT[0] = 1_000_001 var ans : int for n in 0..<N: var t = T[n] Sr[t] += 1 S[t] += 1 for j in 1..i: S[j] += S[j - 1] for n in 0..<N: var t = T[n] SBIT.add(t, Sr[t] - Sl[t] - 1) Sr[t] -= 1 Sl[t] += 1 if t > 0: ans += BIT.sum(t - 1) * (S[t - 1] - BIT.sum(t - 1)) ans -= SBIT.sum(t - 1) if t < i: ans += (BIT.sum(i) - BIT.sum(t)) * (S[i] - S[t] - BIT.sum(i) + BIT.sum(t)) ans -= (SBIT.sum(i) - SBIT.sum(t)) BIT.add(t, 1) echo ans