iT邦幫忙

2023 iThome 鐵人賽

DAY 7
0

接下來幾篇要介紹時間複雜度各種的分析技巧,不過因為個人能力有限,因此這裡開始會大量參考網路資源,尤其是 AA 競程在 YouTube 的時間複雜度教學影片

AA 競程是個非常專業的競技程式補習班,他們的學生很多都在 APCS、TOI、資訊能力競賽等等都拿到了極佳的成果。最近AA 競程的 YouTube 有在做 Atcoder Beginner Contest 的賽後講題,有興趣的人可以去參考看看。

不過當然我雖然參考影片寫,不過我不會止步於影片本身。我會盡量把裡面留作練習卻沒那麼好想和我自己學習時曾經卡住的點完整講過一遍。

那麼就讓我們開始接下來的內容!

數迴圈

昨天提到過其實只要取被執行最多次的指令們,把它們的漸進複雜度相加就可以了。

此時有一個用的小觀察:迴圈套越多層內部被執行的次數越多,所以只要從外往內數迴圈執行次數的漸進複雜度後加總再取一次漸進複雜度就可以了。

那這種技巧之所以會叫做數迴圈,是因為要知道內層迴圈的執行次數,其實只要從外層一路「乘」進來就好了,過程就好像在「數」有幾層迴圈一樣。

int func(int n, int m) {
    int result = 0;
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            ++result;
        }
        for (int j = 0; j < n; ++j) {
            ++result;
        }
    }
    for (int i = 0; i < m; ++i) {
        ++result;
    }
    return result;
}

以上面程式為例:最深的迴圈出現在三個 ++result 那邊,而它們的漸進複雜度相加是: https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(n%5Ccdot%20m)%7D%2B%5Cmathcal%7BO%7D%7B(n%5E2)%7D%2B%5Cmathcal%7BO%7D%7B(m)%7D%3D%5Cmathcal%7BO%7D%7B(n%5Ccdot%20m%2Bn%5E2)%7D

值得注意的是,因為無法確定 https://chart.googleapis.com/chart?cht=tx&amp;chl=nhttps://chart.googleapis.com/chart?cht=tx&amp;chl=m 誰大誰小,因此不能把 https://chart.googleapis.com/chart?cht=tx&amp;chl=n%5Ccdot%20m 消去。

數學分析

剛剛提到的數迴圈,雖然是最常用的技巧,但也是新手最容易搞錯和誤用的技巧。

  • 一個迴圈就是 https://chart.googleapis.com/chart?cht=tx&amp;chl=O(n)
  • 兩個迴圈就是 https://chart.googleapis.com/chart?cht=tx&amp;chl=O(n%5E2)

可能有些初學者學過剛剛的數迴圈後,會得出上面這種結論,但事情並非總是這麼簡單!

有時候迴圈不會像上面的例子那樣執行次數穩定、每次次數都固定,這時候我們就需要做一點數學分析來確定它的上界是什麼,以估算它的漸進複雜度。

這邊以 Atcoder 的 ARC133 A - ABC 舉例

題意

給定正整數 https://chart.googleapis.com/chart?cht=tx&amp;chl=K ,求有幾個正整數三元組 https://chart.googleapis.com/chart?cht=tx&amp;chl=(A%2C%20B%2C%20C) 能滿足 https://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20K 。若兩個三元組數字完全相同但排列不一樣也會被分開計為不同的三元組。

https://chart.googleapis.com/chart?cht=tx&amp;chl=1%5Cle%20K%5Cle%202%5Ctimes%2010%5E5
時間限制 2 秒

超暴力 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(K%5E3)%7D

首先可以用最直覺最暴力的方式來想該怎麼做:執行試遍 A、B、C 所有可能的數字!

因此我們可以像下面這樣三層迴圈暴力枚舉:

void solve() {
    int K;
    cin >> K;
    long long ans = 0;
    for (int A = 1; A <= K; ++A) {
        for (int B = 1; B <= K; ++B) {
            for (int C = 1; C <= K; ++C) {
                if ((long long)A * B * C <= K) {
                    ++ans;
                }
            }
        }
    }
    cout << ans << "\n";
}

這看起來真是暴力至極,時間複雜度是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(K%5E3)%7D ,看看輸入 https://chart.googleapis.com/chart?cht=tx&amp;chl=K 的最大數值 https://chart.googleapis.com/chart?cht=tx&amp;chl=2%5Ctimes%2010%5E5https://chart.googleapis.com/chart?cht=tx&amp;chl=K%5E3%3D8%5Ctimes%2010%5E%7B15%7D ,回想 Day 4 的實測,絕對不可能在兩秒內跑完。

還是很暴力 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(K%5E2)%7D

但真的有必要枚舉那麼多種可能嗎?看看我們的條件判斷,當我們已經知道 https://chart.googleapis.com/chart?cht=tx&amp;chl=Ahttps://chart.googleapis.com/chart?cht=tx&amp;chl=B 的情況下能否直接判斷出 https://chart.googleapis.com/chart?cht=tx&amp;chl=C 的數量?

假設 https://chart.googleapis.com/chart?cht=tx&amp;chl=Ahttps://chart.googleapis.com/chart?cht=tx&amp;chl=B 已知,此時不等式 https://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20K%5CRightarrow%20C%5Cle%5Cfrac%7BK%7D%7BAB%7D 且因為 https://chart.googleapis.com/chart?cht=tx&amp;chl=C 為正整數,所以 https://chart.googleapis.com/chart?cht=tx&amp;chl=1%5Cle%20C%5Cle%5Cfrac%7BK%7D%7BAB%7D

既然都知道符合需求的 https://chart.googleapis.com/chart?cht=tx&amp;chl=C 的範圍是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5B1%2C%20%5Cfrac%7BK%7D%7BAB%7D%5D,就不用大費周章的枚舉了:

void solve() {
    int K;
    cin >> K;
    long long ans = 0;
    for (int A = 1; A <= K; ++A) {
        for (int B = 1; B <= K; ++B) {
            // 區間右界減去左界再加一
            ans += (K / A / B) - 1 + 1;
        }
    }
    cout << ans << "\n";
}

如此一來時間複雜度降至 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(K%5E2)%7D ,不過 https://chart.googleapis.com/chart?cht=tx&amp;chl=(2%5Ctimes%2010%5E5)%5E2%3D4%5Ctimes%2010%5E%7B10%7D ,當初我們 Day 4 的結論是一般的電腦每秒的步驟數約落在 https://chart.googleapis.com/chart?cht=tx&amp;chl=10%5E8%5Csim%2010%5E9 ,目前要在兩秒內跑完還是沒辦法,因此得必須繼續優化。

不明所以的暴力 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(%3F%3F%3F)%7D

我們再想想,我們在枚舉 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 的過程中,真的每次都能產生出符合需求的 https://chart.googleapis.com/chart?cht=tx&amp;chl=C 嗎?

例如像 https://chart.googleapis.com/chart?cht=tx&amp;chl=A%3DK ,則 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 不可能大於 1!所以 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 從 1 之後的枚舉都是無效的,事實上 B 最大只能到 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BK%7D%7BA%7D ,因為要是 https://chart.googleapis.com/chart?cht=tx&amp;chl=B%3E%5Cfrac%7BK%7D%7BA%7D 就代表 https://chart.googleapis.com/chart?cht=tx&amp;chl=AB%3EK 直接違反了題目的前提!

所以可以進一步優化 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 的迴圈:

void solve() {
    int K;
    cin >> K;
    long long ans = 0;
    for (int A = 1; A <= K; ++A) {
        for (int B = 1; (long long)A * B <= K; ++B) {
            // 區間右界減去左界再加一
            ans += (K / A / B) - 1 + 1;
        }
    }
    cout << ans << "\n";
}

很神奇的是,這樣子就可以通過這題了,時間還只有幾毫秒而已!

那這樣子的時間複雜度是多少呢?

第一層迴圈會執行 https://chart.googleapis.com/chart?cht=tx&amp;chl=K 次毋庸置疑,但第二層迴圈的次數就比較怪了,每次都不一樣,這邊就需要稍微數學分析一下。

漸進複雜度數學分析

第二層迴圈的次數取決於 https://chart.googleapis.com/chart?cht=tx&amp;chl=A 的大小,第一輪會跑 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BK%7D%7B1%7D 次、第二輪會跑 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BK%7D%7B2%7D 次、第三輪會跑 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BK%7D%7B3%7D 次...

因此第二層迴圈的次數可以如下估計

https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BK%7D%7B1%7D%2B%5Cfrac%7BK%7D%7B2%7D%2B%5Cfrac%7BK%7D%7B3%7D%2B%5Ccdots%2B%5Cfrac%7BK%7D%7BK%7D%3DK(%5Cfrac%7B1%7D%7B1%7D%2B%5Cfrac%7B1%7D%7B2%7D%2B%5Cfrac%7B1%7D%7B3%7D%2B%5Ccdots%2B%5Cfrac%7B1%7D%7BK%7D)%3DK%5Ccdot%5Csum_%7Bi%3D1%7D%5E%7BK%7D%5Cfrac%7B1%7D%7Bi%7D

因為括號內的級數難以精確算出總和,不過我們只要估計上界就好了。

因此此時可以用一個小技巧,就是將級數內的元素分組後讓每組變成方便計算的模樣:

https://chart.googleapis.com/chart?cht=tx&amp;chl=K%5Ccdot%5Csum_%7Bi%3D1%7D%5E%7BK%7D%5Cfrac%7B1%7D%7Bi%7D%3DK%5B(%5Cfrac%7B1%7D%7B1%7D)%2B(%5Cfrac%7B1%7D%7B2%7D%2B%5Cfrac%7B1%7D%7B3%7D)%2B(%5Cfrac%7B1%7D%7B4%7D%2B%5Cfrac%7B1%7D%7B5%7D%2B%5Cfrac%7B1%7D%7B6%7D%2B%5Cfrac%7B1%7D%7B7%7D)%5Ccdots%5D

https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cle%20K%5B(%5Cfrac%7B1%7D%7B1%7D)%2B(%5Cfrac%7B1%7D%7B2%7D%2B%5Cfrac%7B1%7D%7B2%7D)%2B(%5Cfrac%7B1%7D%7B4%7D%2B%5Cfrac%7B1%7D%7B4%7D%2B%5Cfrac%7B1%7D%7B4%7D%2B%5Cfrac%7B1%7D%7B4%7D)%5Ccdots%5D%3DK%5B(1)%2B(1)%2B(1)%2B%5Ccdots%5D

因為每一組內的加總值都變成了 1,於是現在問題轉換成了 https://chart.googleapis.com/chart?cht=tx&amp;chl=K 個東西按照上面的分組方式會被變成幾組?

按照我們的分組方式,每組內的元素數量如下表格:

第一組 第二組 第三組 第四組 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Ccdots
https://chart.googleapis.com/chart?cht=tx&amp;chl=1%3D2%5E0 https://chart.googleapis.com/chart?cht=tx&amp;chl=2%3D2%5E1 https://chart.googleapis.com/chart?cht=tx&amp;chl=4%3D2%5E2 https://chart.googleapis.com/chart?cht=tx&amp;chl=8%3D2%5E3 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Ccdots

我們令 https://chart.googleapis.com/chart?cht=tx&amp;chl=K 會被分成 https://chart.googleapis.com/chart?cht=tx&amp;chl=t 組,則按照等比級數和公式:

小提醒:因為我們是按照二的冪次來決定幾個元素一組的,因此若 https://chart.googleapis.com/chart?cht=tx&amp;chl=K 並非二的冪次減一,最後一組可能會填不滿,所以下面才會寫小於等於

https://chart.googleapis.com/chart?cht=tx&amp;chl=K%5Cle%5Cfrac%7B1(1-2%5Et)%7D%7B1-2%7D%3D%5Cfrac%7B-2%5Et%2B1%7D%7B-1%7D%3D2%5Et-1

https://chart.googleapis.com/chart?cht=tx&amp;chl=%5CRightarrow%20K%2B1%5Cle2%5Et

https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Ctherefore%20t%5Cge%5Clog_2%7B(K%2B1)%7D

要知道之所以會是不等式,是因為最後一組分不滿的問題,所以其實滿足該不等式的最小值才會是我們 https://chart.googleapis.com/chart?cht=tx&amp;chl=t 的值,且因為分組數必為整數。因此可以推論 https://chart.googleapis.com/chart?cht=tx&amp;chl=t%3D%5Clceil%5Clog_2%7B(K%2B1)%7D%5Crceil

最後代回原式

https://chart.googleapis.com/chart?cht=tx&amp;chl=K%5Ccdot%20t%3DK%5Ccdot%20%5Clceil%5Clog_2%7B(K%2B1)%7D%5Crceil%3D%5Cmathcal%7BO%7D%7B(K%5Clog%20K)%7D

這就是我們的時間複雜度,這樣的複雜度在 https://chart.googleapis.com/chart?cht=tx&amp;chl=K%3D2%5Ctimes%2010%5E5 下為 https://chart.googleapis.com/chart?cht=tx&amp;chl=(2%5Ctimes%2010%5E5)%5Ccdot%20%5Clog_2%7B(2%5Ctimes%2010%5E5)%7D%5Capprox%203521928 ,對照我們 Day 4 的結論,2 秒內根本輕輕鬆鬆。

補充

實際上,剛剛那題還可以做到 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(%5Csqrt%5B%5Cfrac%7B2%7D%7B3%7D%5D%7BK%7D)%7D ,做法我們可以先看 Atcoder 的 ABC227 C - ABC conjecture

題意

給定正整數 https://chart.googleapis.com/chart?cht=tx&amp;chl=N ,求有幾個正整數三元組 https://chart.googleapis.com/chart?cht=tx&amp;chl=(A%2C%20B%2C%20C) 能滿足 https://chart.googleapis.com/chart?cht=tx&amp;chl=A%5Cle%20B%5Cle%20Chttps://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20N 。保證答案能小於 https://chart.googleapis.com/chart?cht=tx&amp;chl=2%5E%7B63%7D (答案在 long long 範圍內)。

https://chart.googleapis.com/chart?cht=tx&amp;chl=1%5Cle%20N%5Cle%2010%5E%7B11%7D
時間限制 2 秒

解法

這題跟剛剛幾乎一樣!只是輸入的數值範圍變大了超多、且多了一個條件 https://chart.googleapis.com/chart?cht=tx&amp;chl=A%5Cle%20B%5Cle%20C 而已。

一樣從最暴力開始看:

using ll = long long;

void solve() {
    ll N;
    cin >> N;
    
    ll ans = 0;
    for (ll A = 1; A <= N; ++A) {
        for (ll B = A; B <= N; ++B) {
            for (ll C = B; C <= N; ++C) {
                if (A * B * C <= N) ++ans;
            }
        }
    }
    
    cout << ans << "\n";
}

狀況幾乎與我們剛剛的情況很像,只是迴圈的次數不一樣了而已,因此我們一次分析到底囉!

  1. 而因為要滿足 https://chart.googleapis.com/chart?cht=tx&amp;chl=A%5Cle%20B%5Cle%20Chttps://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20N ,所以要是 https://chart.googleapis.com/chart?cht=tx&amp;chl=A 本身大於 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Csqrt%5B3%5D%7BN%7D 的話就不可能有答案,所以 https://chart.googleapis.com/chart?cht=tx&amp;chl=A 允許的區間是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5B1%2C%20%5Csqrt%5B3%5D%7BN%7D%5D
  2. 假設 https://chart.googleapis.com/chart?cht=tx&amp;chl=A 為已知,則 https://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20N%5CRightarrow%20BC%5Cle%5Cfrac%7BN%7D%7BA%7Dhttps://chart.googleapis.com/chart?cht=tx&amp;chl=C%5Cge%20B ,因此 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 不能超過 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Csqrt%7B%5Cfrac%7BN%7D%7BA%7D%7D ,所以 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 允許的區間是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5BA%2C%20%5Csqrt%7B%5Cfrac%7BN%7D%7BA%7D%7D%5D
  3. 假設 https://chart.googleapis.com/chart?cht=tx&amp;chl=Ahttps://chart.googleapis.com/chart?cht=tx&amp;chl=B 為已知,則 https://chart.googleapis.com/chart?cht=tx&amp;chl=ABC%5Cle%20N%5CRightarrow%20C%5Cle%5Cfrac%7BN%7D%7BAB%7D ,因此 https://chart.googleapis.com/chart?cht=tx&amp;chl=C 的區間會是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5BB%2C%20%5Cfrac%7BN%7D%7BAB%7D%5D

按照以上三個結論,可以優化成:

using ll = long long;

void solve() {
    ll N;
    cin >> N;
    
    ll ans = 0;
    for (ll A = 1; A * A <= N / A; ++A) {
        for (ll B = A; B * B <= N / A; ++B) {
            // 區間右界減去左界再加一
            ans += N / A / B - B + 1;
        }
    }
    
    cout << ans << "\n";
}

這樣寫時間複雜度是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(%5Csqrt%5B%5Cfrac%7B2%7D%7B3%7D%5D%7BN%7D)%7D ,以這題的輸入 https://chart.googleapis.com/chart?cht=tx&amp;chl=10%5E%7B11%7D 而言兩秒內可以輕鬆通過。

ARC133 A 新解法

那剛剛那一題的解法能怎麼應用回去原本那題呢?

我們可以發現 ARC133_A 這題的三元組若排列不同則算是不同的三元組、但是 ABC227_C 的三元組限制必須由小到大,那我們是不是只要計算目前「由小到大」的三元組可以生成多少個排列,加總後就可以把 ABC227_C 的解法用到 ARC133_A 去?

我們可以先分析看看不同情況下會生成多少個排列:

  1. https://chart.googleapis.com/chart?cht=tx&amp;chl=A%20%3D%20B%20%3D%20C :生成一個排列
  2. https://chart.googleapis.com/chart?cht=tx&amp;chl=A%20%3D%20B%20%5Cneq%20C :生成三個排列
  3. https://chart.googleapis.com/chart?cht=tx&amp;chl=A%20%5Cneq%20B%20%3D%20C :生成三個排列
  4. https://chart.googleapis.com/chart?cht=tx&amp;chl=A%20%5Cneq%20B%20%5Cneq%20C :生成六個排列

而因為我們程式中沒有實際的枚舉每一個 https://chart.googleapis.com/chart?cht=tx&amp;chl=C ,而是找出合格的區間然後直接相減計算,因此我們只能在已知 https://chart.googleapis.com/chart?cht=tx&amp;chl=Ahttps://chart.googleapis.com/chart?cht=tx&amp;chl=B 的情況下計算

這邊重貼一次 https://chart.googleapis.com/chart?cht=tx&amp;chl=ABC 各自的區間範圍

  • https://chart.googleapis.com/chart?cht=tx&amp;chl=A 的區間是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5B1%2C%20%5Csqrt%5B3%5D%7BN%7D%5D
  • https://chart.googleapis.com/chart?cht=tx&amp;chl=B 的區間是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5BA%2C%20%5Csqrt%7B%5Cfrac%7BN%7D%7BA%7D%7D%5D
  • https://chart.googleapis.com/chart?cht=tx&amp;chl=C 的區間是 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5BB%2C%20%5Cfrac%7BN%7D%7BAB%7D%5D

首先因為我們在 https://chart.googleapis.com/chart?cht=tx&amp;chl=B 的迴圈內, https://chart.googleapis.com/chart?cht=tx&amp;chl=Ahttps://chart.googleapis.com/chart?cht=tx&amp;chl=B 是已知,因此可以很簡單的判斷 https://chart.googleapis.com/chart?cht=tx&amp;chl=A 是否等於 https://chart.googleapis.com/chart?cht=tx&amp;chl=Bhttps://chart.googleapis.com/chart?cht=tx&amp;chl=C 的部分則可以藉由判斷它的上界 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cfrac%7BN%7D%7BAB%7D 是否等於下界 https://chart.googleapis.com/chart?cht=tx&amp;chl=B ,若是等於就代表只有一個 https://chart.googleapis.com/chart?cht=tx&amp;chl=B%3DC 的情況;若不等於則代表有一個 https://chart.googleapis.com/chart?cht=tx&amp;chl=B%3DC 的情況、其他則都是 https://chart.googleapis.com/chart?cht=tx&amp;chl=B%5Cneq%20C 的情況。因此程式可以如下撰寫:

using ll = long long;

void solve() {
    ll N;
    cin >> N;
    
    ll ans = 0;
    for (ll A = 1; A * A <= N / A; ++A) {
        for (ll B = A; B * B <= N / A; ++B) {
            ll bound = N / A / B;
            if (A == B) {
                if (B == bound) ans += 1;
                else ans += (bound - B + 1) * 3 - 2;
            } else {
                if (B == bound) ans += 3;
                else ans += (bound - B + 1) * 6 - 3;
            }
        }
    }
    
    cout << ans << "\n";
}

如此一來就可以以 https://chart.googleapis.com/chart?cht=tx&amp;chl=%5Cmathcal%7BO%7D%7B(%5Csqrt%5B%5Cfrac%7B2%7D%7B3%7D%5D%7BK%7D)%7D 的時間複雜度通過 ARC133 A ,但是因為它輸入只有到 https://chart.googleapis.com/chart?cht=tx&amp;chl=2%5Ctimes%2010%5E5 ,所以從執行時間上你看不出速度差距就是了。

小結

因為篇幅問題,因此新解法的時間複雜度證明就留到明天囉!

然後明天預計會繼續介紹更多數學分析漸進複雜度的例子,請各位敬請期待!


上一篇
Day 6 我說那個讀者們啊,剛才寫程式的時候,你有在分析吧?
下一篇
Day 8 不數迴圈就沒辦法分析了?技豈是如此不便之物 其二
系列文
CS補完計畫—演算法與資料結構的第三次衝擊30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言