• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            coreBugZJ

            此 blog 已棄。

            AC's code , FZU 2011年3月月賽之 C, FZU 2012

            Problem 2012 AC's code

            Time Limit: 1000 mSec    Memory Limit : 32768 KB

            Problem Description

            AC is given two strings A and B, and then he wants to insert B into A. As we know, there are |A| + 1 possible ways to make the final string! For example, if A = “orz” and B = “p”, then AC may get four final strings: “porz”, “oprz”, “orpz”, “orzp”. However, these strings are not so beautiful, so AC sort them in lexicographic order, then he gets {“oprz”, “orpz”, “orzp”,”porz”}.

            Now AC wants to know the k-th string in the sorted strings! For example, if AC wants to know the first string in the sorted strings, the answer is “oprz”, the second is “orpz”, the third is “orzp”, and the 4-th is “porz”.

            Now you are given string A and B, and the number K, in this problem, AC guarantees that K is valid.

            Input

            The first line of the input data is an integer number T (T <= 1000), represent the number of test cases.

            For each case, three lines follow.

            The first line has one string indicates A. (Without any space in A)

            The second line has one string indicates B. (Without any space in B)

            The third line has one integer indicates K.

            (1 <= |A|, |B| <= 10000, 1 <= K <= |A| + 1)

            Output

            For each test case, output a single line “Case idx:” where idx is the test case number starts from 1. Then one line output the k-th string in the sorted string.

            Sample Input

            4
            orz
            p
            1
            orz
            p
            2
            orz
            p
            3
            orz
            p
            4

            Sample Output

            Case 1:
            oprz
            Case 2:
            orpz
            Case 3:
            orzp
            Case 4:
            porz



            分析:
            字符串 hash,求第 k 小元素。

            字符串hash 函數為
            hash ( s[ 0..n ] ) = ( s[0]*q^n + s[1]*q^(n-1) + ...... + s[n-1]*q^1 + s[n]*q^0 ) mod p,其中,p, q 為大質數,
            適當預處理(見函數init )后,B 插入在 A 中任意位置所形成的字符串的任意前綴的hash 值都能 O(1) 計算出來(見函數hash)。

            求第 k 小元素可以使用修改的快速排序(見函數sort),其中要注意使用隨機,否則超時。復雜度 O(n)。

            比較兩個字符串大小時,只比較它們的最長公共前綴的后一個字符(見函數 cmp)。
            而最長公共前綴通過二分其長度,用hash值判斷是否相等,可以O(log(|A|+|B|) )得到(見函數 cmp)。

            另一種做法是用后綴數組的。


            我的代碼:
              1#include <stdio.h>
              2#include <string.h>
              3#include <stdlib.h>
              4#include <time.h>
              5
              6typedef  long long  Lint;
              7
              8#define  PRIME  55566677
              9#define  HH     23456789
             10
             11#define  L  21009
             12
             13int la, lb, k;
             14char a[ L ], b[ L ], c[ L + L ];
             15Lint ha[ L ], hb[ L ], hh[ L ];
             16
             17void init() {
             18        int i;
             19        srand( time( 0 ) );
             20
             21        memset( ha, 0sizeof(ha) );
             22        ha[ 0 ] = a[ 0 ] % PRIME;
             23        for ( i = 1; a[ i ]; ++i ) {
             24                ha[ i ] = ( ha[ i - 1 ] * HH + a[ i ] ) % PRIME;
             25        }

             26        la = i;
             27
             28        memset( hb, 0sizeof(hb) );
             29        hb[ 0 ] = b[ 0 ] % PRIME;
             30        for ( i = 1; b[ i ]; ++i ) {
             31                hb[ i ] = ( hb[ i - 1 ] * HH + b[ i ] ) % PRIME;
             32        }

             33        lb = i;
             34
             35        hh[ 0 ] = 1;
             36        for ( i = 1; i < L; ++i ) {
             37                hh[ i ] = ( hh[ i -1 ] * HH ) % PRIME;
             38        }

             39}

             40
             41/*
             42insert b after a[ i ]
             43query hash of [0..j]
             44*/

             45Lint hash( int i, int j ) {
             46        if ( i < 0 ) {
             47                if ( j < lb ) {
             48                        return hb[ j ];
             49                }

             50                return ( hb[ lb-1 ] * hh[ j-lb+1 ] + ha[ j-lb ] ) % PRIME;
             51        }

             52        if ( j <= i ) {
             53                return ha[ j ];
             54        }

             55        if ( j <= i + lb ) {
             56                return ( ha[ i ] * hh[ j-i ] + hb[ j-i-1 ] ) % PRIME;
             57        }

             58        return ( ha[i]*hh[j-i] + hb[lb-1]*hh[j-i-lb] + (ha[j-lb]+PRIME-((ha[i]*hh[j-lb-i])%PRIME)) ) % PRIME;
             59}

             60
             61char getint i, int j ) {
             62        if ( i < 0 ) {
             63                if ( j < lb ) {
             64                        return b[ j ];
             65                }

             66                return a[ j-lb ];
             67        }

             68        if ( j <= i ) {
             69                return a[ j ];
             70        }

             71        if ( j <= i + lb ) {
             72                return b[ j-i-1 ];
             73        }

             74        return a[ j-lb ];
             75}

             76
             77int cmp( int i, int j ) {
             78        int low = 0, high = la+lb-1, mid, lcp=-1;
             79        while ( low <= high ) {
             80                mid = ( low + high ) / 2;
             81                if ( hash(i,mid)==hash(j,mid) ) {
             82                        low = mid + 1;
             83                        if ( lcp < mid ) {
             84                                lcp = mid;
             85                        }

             86                }

             87                else {
             88                        high = mid - 1;
             89                }

             90        }

             91        return get(i,lcp+1- get(j,lcp+1);
             92}

             93
             94int idx[ L ];
             95void sort( int le, int ri, int k ) {
             96        int i, j, x;
             97        if ( (le>=ri) || (k<1) ) {
             98                return;
             99        }

            100        i = le + ( rand() % ( ri - le + 1 ) );
            101        x = idx[ i ];
            102        idx[ i ] = idx[ le ];
            103        idx[ le ] = x;
            104        i = le;
            105        j = ri;
            106        while ( i < j ) {
            107                while ( (i<j) && (cmp(x,idx[j])<=0) ) {
            108                        --j;
            109                }

            110                if ( i < j ) {
            111                        idx[ i++ ] = idx[ j ];
            112                }

            113                while ( (i<j) && (cmp(idx[i],x)<=0) ) {
            114                        ++i;
            115                }

            116                if ( i < j ) {
            117                        idx[ j-- ] = idx[ i ];
            118                }

            119        }

            120        idx[ i ] = x;
            121        if ( i - le + 1 < k ) {
            122                sort( i+1, ri, k-(i-le+1) );
            123        }

            124        else if ( i - le + 1 > k ) {
            125                sort( le, i-1, k );
            126        }

            127}

            128
            129char* solve() {
            130        int i, p;
            131        char tmp;
            132        for ( i = 0; i <= la; ++i ) {
            133                idx[ i ] = i - 1;
            134        }

            135        sort( 0, la, k );
            136        c[ 0 ] = 0;
            137        p = idx[ k - 1 ];
            138        tmp = a[ p + 1 ];
            139        a[ p + 1 ] = 0;
            140        strcat( c, a );
            141        a[ p + 1 ] = tmp;
            142        strcat( c, b );
            143        strcat( c, a+p+1 );
            144        return (char*)c;
            145}

            146
            147int main() {
            148        int td, cd = 0;
            149        scanf( "%d"&td );
            150        while ( td-- > 0 ) {
            151                scanf( "%s%s%d", a, b, &k );
            152                init();
            153                printf( "Case %d:\n%s\n"++cd, solve() );
            154        }

            155        return 0;
            156}

            157


            posted on 2011-03-21 21:12 coreBugZJ 閱讀(1877) 評論(9)  編輯 收藏 引用 所屬分類: ACM

            Feedback

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-22 18:30 sodaisinie

            代碼無法打開啊  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-22 18:52 coreBugZJ

            @sodaisinie
            原來是在ubuntu下用firefox編輯的。。。
            已經win7下用IE重新編輯了  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-22 21:17 sodaisinie

            贊@coreBugZJ
              回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-23 16:26 maoyu

            你好,請為什么這樣的hash就可以保證沒有重復值呢?萬一出現兩種添加方式經過hash后的值一樣,怎么辦呢?  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-23 19:48 maoyu

            還有一個疑問,這里用到的是大素數modP,我之前開了一個5位數的大素數,就WA了,然后把素數換成你的那兩個,就AC了。那到底要多大呢?  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-23 20:51 coreBugZJ

            @maoyu
            這個字符串 hash 從大空間映射到小空間,是有可能出現沖突的,只是輸入空間雖大,需要區別的數據量不是很大,沖突的概率還是比較小的,素數開的大一些,降低沖突的概率。。。
            PS:這是我第一次寫字符串 hash,以前字典樹Trie用的比較多(對大量長字符串沒轍 ^_^ )  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-24 17:45 maoyu

            我看福大核武的題解,也是這么說。只是我個人覺得這題如果數據BT,需要兩個不同的狀態其hash值一定不同,我們能證明這種hash方法產生的每個狀態hash值都不一樣嗎?  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-24 17:56 coreBugZJ

            @maoyu
            我不能證明,比賽時我們就是卡在這一題和最后一題上,我是看了福大核武的題解過的。。。  回復  更多評論   

            # re: AC's code , FZU 2011年3月月賽之 C, FZU 2012 2011-03-26 17:30 Dragon521

            真的很贊  回復  更多評論   


            久久精品中文字幕一区| 久久99热这里只频精品6| 2020久久精品国产免费| 日韩欧美亚洲综合久久影院d3| 88久久精品无码一区二区毛片 | 久久亚洲AV无码精品色午夜 | 久久久久久无码国产精品中文字幕 | 国产精品伦理久久久久久| 久久影视国产亚洲| 久久99精品国产自在现线小黄鸭| 久久99精品久久久久久秒播| 久久久亚洲欧洲日产国码是AV| 精品久久久久久中文字幕| 久久久久久久久久久免费精品| 麻豆一区二区99久久久久| 品成人欧美大片久久国产欧美...| 尹人香蕉久久99天天拍| 成人免费网站久久久| 思思久久99热只有频精品66| av无码久久久久不卡免费网站| 亚洲精品97久久中文字幕无码| 国产精品久久毛片完整版| 亚洲精品无码久久久久AV麻豆| 国产精品对白刺激久久久| 久久男人Av资源网站无码软件| 激情综合色综合久久综合| 天天久久狠狠色综合| 狠狠色婷婷综合天天久久丁香| 一本色道久久88—综合亚洲精品| 国产福利电影一区二区三区久久久久成人精品综合 | 四虎影视久久久免费观看| 国产精品女同一区二区久久| 久久久久国产精品| 99久久久精品| 97久久超碰成人精品网站| 久久久久免费看成人影片| 伊人久久大香线蕉综合影院首页 | 久久久久久国产精品免费无码| 久久精品国产亚洲av麻豆蜜芽| 久久久精品日本一区二区三区| 久久国产精品国产自线拍免费|