adjacent value 鄰近值算法問題的 My answer(錯誤)

據(jù)說是經(jīng)典面經(jīng)問題之一娃胆,實際上剛才某位朋友就遇上這道面試難題求助于我了,到最后雖然都沒有趕上時間拯救到他(論英語閱讀能力的重要性)......Orz

姑且放上原題目和我自己做的答案(未經(jīng)驗證)

Integer V lies strictly between integers U and W if U < V < W or if U > V > W

A non empty zero indexed array A consisting of N integers is given.
A pair of indices (P, Q), where 0 <= P < Q < N, is said to have 'adjacent values'
if no value in the array lies strictly between values A[P] and A[Q],
and in addition A[P] != A[Q]

For example, in array A such that:
A[0] = 0
A[1] = 3
A[2] = 3
A[3] = 7
A[4] = 5
A[5] = 3
A[6] = 11
A[7] = 1

the following pairs of indices have adjacent values:
(0,7), (1,4), (1,7)
(2,4), (2,7), (3,4)
(3,6), (4,5), (5,7)

For example, indices 4 and 5 have adjacent values because the values a[4] = 5 and A[5] = 3 are different
and there is no value in array A that lies strictly between them
the only such value could be the number 4, which is not present in the array

Given two indices P and Q, their distance is defined as abs(P-Q)
where abs(X) = X for X>=0
and abs(X) = -X for X<=0
For example the distance between indices 4 and 5 is 1 because abs(4-5) = abs(5-4) = 1

Write a function that given a non-empty zero-indexed array A consisting of N integers
returns the maximum distance between indices of this array that have adjacent values
The function should return -1 if no adjacent indices exist

For example given array A such that:
A[0] = 1
A[1] = 4
A[2] = 7
A[3] = 3
A[4] = 3
A[5] = 5

the function should return 4 because:

  • indices 0 and 4 are adjacent because A[0] != A[4]
    and the array does not contain any value that lies strictly between A[0] = 1 and A[4] = 3
  • the distance between these indices is abd(0-4) = 4
  • no other pair of adjacent indices that has a larger distance exists

Assume that

  • N is an integer within the range [1 .. 40,000]
  • each element of array A is an integer within the range [-2,147,483,648 to 2,147,483,647]
class Solution {
    public static int solution(int[] A) {
        int[] valueDistances = new int[A.length];
        int[] distances = new int[A.length];
        int maxDistance = 0;
        Arrays.fill(valueDistances, Integer.MAX_VALUE);

        for (int i = 0; i < A.length; i++) {
            for (int j = i + 1; j < A.length; j++) {
                int valueDistance = Math.abs(A[i] - A[j]);
                if (valueDistances[i] >= valueDistance) {
                    valueDistances[i] = valueDistance;
                    distances[i] = Math.abs(i - j);
                    if (distances[i] > maxDistance) {
                        maxDistance = distances[i];
                    }
                }
                if (valueDistances[j] > valueDistance)
                    valueDistances[j] = valueDistance;
            }
        }
        return maxDistance > 0 ? maxDistance : -1;
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市禁谦,隨后出現(xiàn)的幾起案子胁黑,更是在濱河造成了極大的恐慌,老刑警劉巖州泊,帶你破解...
    沈念sama閱讀 212,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異拥诡,居然都是意外死亡,警方通過查閱死者的電腦和手機冗懦,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評論 3 385
  • 文/潘曉璐 我一進(jìn)店門仇祭,熙熙樓的掌柜王于貴愁眉苦臉地迎上來披蕉,“玉大人,你說我怎么就攤上這事眯娱。” “怎么了徙缴?”我有些...
    開封第一講書人閱讀 158,369評論 0 348
  • 文/不壞的土叔 我叫張陵嘁信,是天一觀的道長于样。 經(jīng)常有香客問我潘靖,道長,這世上最難降的妖魔是什么卦溢? 我笑而不...
    開封第一講書人閱讀 56,799評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮贬芥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘誓军。我一直安慰自己疲扎,他們只是感情好昵时,可當(dāng)我...
    茶點故事閱讀 65,910評論 6 386
  • 文/花漫 我一把揭開白布椒丧。 她就那樣靜靜地躺著,像睡著了一般壶熏。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上棒假,一...
    開封第一講書人閱讀 50,096評論 1 291
  • 那天,我揣著相機與錄音谜酒,去河邊找鬼。 笑死僻族,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的述么。 我是一名探鬼主播,決...
    沈念sama閱讀 39,159評論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼度秘,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了敷钾?” 一聲冷哼從身側(cè)響起肄梨,我...
    開封第一講書人閱讀 37,917評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎众羡,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體粱侣,經(jīng)...
    沈念sama閱讀 44,360評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡齐婴,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,673評論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了柠偶。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,814評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡诱担,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出蔫仙,到底是詐尸還是另有隱情,我是刑警寧澤摇邦,帶...
    沈念sama閱讀 34,509評論 4 334
  • 正文 年R本政府宣布,位于F島的核電站居扒,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏苔货。R本人自食惡果不足惜犀概,卻給世界環(huán)境...
    茶點故事閱讀 40,156評論 3 317
  • 文/蒙蒙 一夜惭、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧诈茧,春花似錦、人聲如沸敢会。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至障涯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間唯蝶,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評論 1 267
  • 我被黑心中介騙來泰國打工粘我, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人征字。 一個月前我還...
    沈念sama閱讀 46,641評論 2 362
  • 正文 我出身青樓晴音,卻偏偏與公主長得像柔纵,于是被迫代替她去往敵國和親锤躁。 傳聞我的和親對象是個殘疾皇子搁料,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,728評論 2 351