青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

我住包子山

this->blog.MoveTo("blog.baozishan.in")

#

pku3297解題報告

這道題我用的方法很麻煩,使用一個結構體vector保存結果,使用一個map判斷是不是一個人報了兩個工程.使用set判斷一個工程是不是有人重復報名
于是就有了下面的笨拙代碼

 1#include <string>
 2#include <set>
 3#include <vector>
 4#include <memory.h>
 5#include <map>
 6#include <algorithm>
 7using namespace std;
 8
 9struct Project
10{
11    string name;
12    int studentcount;
13    Project()
14    {
15        studentcount=0;
16        name.assign("");
17    }

18}
;
19
20map<string,int> studentmap;
21set<string> studentset;
22vector<Project> prov;
23int countarray[101]={0};
24char strtemp[100]="";
25Project project;
26
27inline bool comp(const Project &p1,const Project &p2)
28{
29    return p1.studentcount>p2.studentcount;
30}

31inline bool comp2(const Project &p1,const Project &p2)
32{
33    return p1.name.compare(p2.name)<0;
34}

35
36int main()
37{
38    
39    while(true)
40    {
41        int projcount=0;
42        prov.push_back(project);
43        while(true)
44        {
45            gets(strtemp);
46            project.name.assign(strtemp);
47            if(project.name[0]=='1')break;
48            if(project.name[0]=='0')exit(0);
49            if(project.name[0]>='A'&&project.name[0]<='Z')
50            {
51                prov.push_back(project);
52                studentset.clear();
53                projcount++;
54            }

55            if(project.name[0]>='a'&&project.name[0]<='z')
56            {
57                if(studentmap[strtemp]==0)
58                {
59                    studentmap[strtemp]=projcount;
60                }

61                else if(studentmap[strtemp]==-1)
62                {
63                    continue;
64                }

65                else if(studentmap[strtemp]!=projcount)
66                {
67                    prov[studentmap[strtemp]].studentcount--;
68                    studentmap[strtemp]=-1;
69                    continue;
70                }

71                if(studentset.count(strtemp))
72                    continue;
73                else
74                {
75                    studentset.insert(strtemp);
76                    prov[projcount].studentcount++;
77                }

78            }
                        
79        }

80        prov.erase(prov.begin());
81        stable_sort(prov.begin(),prov.end(),comp2);
82        stable_sort(prov.begin(),prov.end(),comp);
83        for(int i=0;i<prov.size();i++)
84        {
85            printf("%s %d\n",prov[i].name.c_str(),prov[i].studentcount);
86        }

87        memset(countarray,0,sizeof(countarray));
88        studentmap.clear();
89        prov.clear();
90        
91    }

92}

93
94

posted @ 2007-07-28 16:37 Gohan 閱讀(403) | 評論 (0)編輯 收藏

pku 3286解題報告

我的做法可能很弱智
給定一個數x>0算通過每一位零出現次數的統計,算出所有的0的次數(從1到X)

舉一個例子
2508這個數
首先考慮個位數
250X  X=0;一共有250-1+1個
25X8  X=0;一共有258-10+1個
2X08 X=0;注意并不只有208-100+1中可能,我之前就錯在這里了,因為最大2508,所以2099-2009這百位的零我就沒有考慮到,所以這里的0有299-100+1個

于是題目就做出來了

輸入一個a b
a<b
a==0時
b統計出零的個數然后加1(0)的個數
否則從a 到 b的0的個數則是從1到b的0個數減去從1到a-1的零的個數
a<10的情況我害怕出錯就分開寫了,所以整個程序有些長

下面就是我笨拙的代碼

 1#include <iostream>
 2#include <string>
 3#include <cstdio>
 4#include <cstdlib>
 5#include <cmath>
 6using namespace std;
 7long long aarray[10]={0};
 8long long barray[10]={0};
 9long long diff[10]={0};
10char tempstr[10= "";
11
12
13int calc(std::string str,int i)
14{
15    //str.erase()
16    if(i==(str.size()-1)) return 0;
17    long long sum=0,len=str.size();
18    int needminus = int(pow(10.0,i));
19    //if(i!=0)str[len-i-2]+=(str[len-i-1]-'0');//new add
20    if(str[len-i-1]=='0')
21    {
22    str.erase(len-i-1,1);
23    }

24    else
25    {
26        str.erase(len-i-1,i+1);
27        str.append(i,'9');
28    }

29    for(int i=0;i<str.size();i++)
30    {
31        sum=sum*10+(str[i]-'0');
32    }

33    sum-=needminus;
34    sum+=1;
35    return sum;
36}

37
38int main()
39{
40    unsigned int a,b;
41    std::string tempstring;
42    int add;
43    while(scanf("%u %u",&a,&b))
44    {
45        add=0;
46
47        if(a==0)
48            add=1;
49        else {
50            add=0;
51            a--;
52        }

53        if(a==-2)
54            break;
55        int alen,blen;
56        if(a<10)
57        {
58            aarray[0]=0;
59        }

60        else
61        {
62            _i64toa(a,tempstr,10);
63            alen = strlen(tempstr);
64            tempstring.assign(tempstr);
65            for(int i=0;i<alen;i++)
66            {
67                aarray[i]=calc(tempstring,i);
68            }

69        }

70        _i64toa(b,tempstr,10);
71        blen = strlen(tempstr);
72        tempstring.assign(tempstr);
73        for(int i=0;i<blen;i++)
74        {
75            barray[i]=calc(tempstring,i);
76        }

77        for(int i=0;i<blen;i++)
78        {
79            diff[i]=barray[i]-aarray[i];
80        }

81        long long sum=0;
82        for(int i=0;i<blen;i++)
83        {
84            sum+=diff[i];
85        }

86        
87        cout<<sum+add<<endl;
88        memset(aarray,0,sizeof(long long)*10);
89        memset(barray,0,sizeof(long long)*10);
90        memset(diff,0,sizeof(long long)*10);
91    }

92}


 

posted @ 2007-07-25 08:20 Gohan 閱讀(616) | 評論 (0)編輯 收藏

在家的一周

基本沒做什么
喝光了一箱健力寶,吃掉了許多娃娃臉,吃了幾次羊,對travian這個網頁游戲做了提供輔助的可行性測試,借此了解更多了些webbrowswer控件及其周邊,同學什么都沒怎么見,唉,估計只能等到寒假了...
回到學校,爭取這周給輔助做的差不多,別的也不能落下...

posted @ 2007-07-18 07:45 Gohan 閱讀(248) | 評論 (0)編輯 收藏

又買了本書

...
99塊


太懶了.看書有如在堆棧,都快滿棧了...

posted @ 2007-07-09 23:08 Gohan 閱讀(189) | 評論 (0)編輯 收藏

今天發現vs2005fstream不能用中文路徑

具體解決如下

vs2005 fstream 不能打開中文路徑名文件的問題!

http://www.shnenglu.com/danoyang/archive/2006/05/23/7523.html

fstream 和 中文路徑
http://www.shnenglu.com/mythma/archive/2006/06/09/8349.html


Trackback: http://www.shnenglu.com/danoyang/services/trackbacks/7523.aspx
Trackback: http://www.shnenglu.com/mythma/services/trackbacks/8349.aspx

posted @ 2007-06-19 00:19 Gohan 閱讀(262) | 評論 (0)編輯 收藏

I'm Gohan

假期打算根據那本Mud Programming模仿著寫個mud..

posted @ 2007-06-07 10:41 Gohan 閱讀(227) | 評論 (0)編輯 收藏

SubclassWindow 一個函數,其實是個宏

#define     SubclassWindow(hwnd, lpfn)       \
              ((WNDPROC)SetWindowLongPtr((hwnd), GWLP_WNDPROC, (LPARAM)(WNDPROC)(lpfn)))

這個宏是我看第七章winshellprograming看到的,很強大的功能,例子是用FindWindowEx找到windows開始按鈕的窗口句柄,之后用該宏加入開始按鈕的消息處理函數.總之還不錯,winshell還真不是一般..
MSDN上查SubclassWindow都不是我要的這個,雖然功能大體相同吧.
下面這個就是SetWindowLongPtr函數:
SetWindowLongPtr Function

The SetWindowLongPtr function changes an attribute of the specified window. The function also sets a value at the specified offset in the extra window memory.

這個函數改變一個指定窗口的一個屬性.它也可設定窗口儲存區指定偏移位置的值。

This function supersedes the SetWindowLong function. To write code that is compatible with both 32-bit and 64-bit versions of Microsoft Windows, use SetWindowLongPtr.
這個函數取代了SetWindowLong函數,為了兼容32位64位windows os,就用這個函數吧 .

Syntax

LONG_PTR SetWindowLongPtr(      
    HWND hWnd,
    int nIndex,
    LONG_PTR dwNewLong
);

Parameters

hWnd
[in] Handle to the window and, indirectly, the class to which the window belongs. The SetWindowLongPtr function fails if the process that owns the window specified by the hWnd parameter is at a higher process privilege in the User Interface Privilege Isolation (UIPI) hierarchy than the process the calling thread resides in.
返回fail當擁有指定窗口的京城比用戶UI權限隔絕(??)高的時候..不知道翻譯對不

Microsoft Windows XP and earlier: The SetWindowLongPtr function fails if the window specified by the hWnd parameter does not belong to the same process as the calling thread.

這個意思大概是函數失敗如果調用進程傳入的hWnd句柄不屬于調用包含這個函數的線程的進程(應用程序).

nIndex
[in] Specifies the zero-based offset to the value to be set. Valid values are in the range zero through the number of bytes of extra window memory, minus the size of an integer. To set any other value, specify one of the following values.
這個不用翻譯了,很明了哈哈
GWL_EXSTYLE
Sets a new extended window style. For more information, see CreateWindowEx.
GWL_STYLE
Sets a new window style.
GWLP_WNDPROC
Sets a new address for the window procedure.
GWLP_HINSTANCE
Sets a new application instance handle.
GWLP_ID
Sets a new identifier of the window.
GWLP_USERDATA
Sets the user data associated with the window. This data is intended for use by the application that created the window. Its value is initially zero.
The following values are also available when the hWnd parameter identifies a dialog box.
DWLP_DLGPROC
Sets the new pointer to the dialog box procedure.
DWLP_MSGRESULT
Sets the return value of a message processed in the dialog box procedure.
DWLP_USER
Sets new extra information that is private to the application, such as handles or pointers.
dwNewLong
[in] Specifies the replacement value.

Return Value

If the function succeeds, the return value is the previous value of the specified offset.
成功返回的是設置前的值LONG_PTR這個類型

If the function fails, the return value is zero. To get extended error information, call GetLastError.

If the previous value is zero and the function succeeds, the return value is zero, but the function does not clear the last error information. To determine success or failure, clear the last error information by calling SetLastError(0), then call SetWindowLongPtr. Function failure will be indicated by a return value of zero and a GetLastError result that is nonzero.


Remarks

Certain window data is cached, so changes you make using SetWindowLongPtr will not take effect until you call the SetWindowPos function.

If you use SetWindowLongPtr with the GWLP_WNDPROC index to replace the window procedure, the window procedure must conform to the guidelines specified in the description of the WindowProc callback function.

If you use SetWindowLongPtr with the DWLP_MSGRESULT index to set the return value for a message processed by a dialog box procedure, the dialog box procedure should return TRUE directly afterward. Otherwise, if you call any function that results in your dialog box procedure receiving a window message, the nested window message could overwrite the return value you set by using DWLP_MSGRESULT.

Calling SetWindowLongPtr with the GWLP_WNDPROC index creates a subclass of the window class used to create the window. An application can subclass a system class, but should not subclass a window class created by another process. The SetWindowLongPtr function creates the window subclass by changing the window procedure associated with a particular window class, causing the system to call the new window procedure instead of the previous one. An application must pass any messages not processed by the new window procedure to the previous window procedure by calling CallWindowProc. This allows the application to create a chain of window procedures.

Reserve extra window memory by specifying a nonzero value in the cbWndExtra member of the WNDCLASSEX structure used with the RegisterClassEx function.

Do not call SetWindowLongPtr with the GWLP_HWNDPARENT index to change the parent of a child window. Instead, use the SetParent function.

If the window has a class style of CS_CLASSDC or CS_PARENTDC, do not set the extended window styles WS_EX_COMPOSITED or WS_EX_LAYERED.

Windows XP/Vista: Calling SetWindowLongPtr to set the style on a progressbar will reset its position.

Function Information



先到這里,以后會寫更多Win32的基礎知識,當我學到的時候..

btw,有本叫the old new thing 似乎很強,不知道什么時候能有一本...

posted @ 2007-06-03 00:26 Gohan 閱讀(4212) | 評論 (2)編輯 收藏

一個小練習,幫人做 (a^n)%k

輸入a,n,k(1<=a,n<=1e9   1<=k<=10000 ,注意:有多組測試數據,請用EOF標志判斷結束輸入):
2 32 5
2 30 5

輸出(a^n)%k的結果(a的n次方被k除的余數):
輸入a,n,k(1<=a,n<=1e9   1<=k<=10000 ,注意:有多組測試數據,請用EOF標志判斷結束輸入):
2 32 5
2 30 5

輸出(a^n)%k的結果(a的n次方被k除的余數):
要求復雜度為O(logn)

解決思路,吃屎兄的推導的
(a*b)Mod c=((a Mod c)*b)Mod c
a^b Mod c  把B寫成二進制(At ,At-1,At-2...A1,A0)
a^b Mod c =(a^(At*2^t....A0*2^0)mod c)=

((a^A0*2^0 mod c)*a^A1*2^1mod c).....
t=log2B;

下面是小弟的程序

#include <iostream>
using namespace std;
int convertToBin(int n,int (&arr)[14])
{
    
int i=0;
    
while(n)
    
{
        arr[i]
=n%2;
        n
=n/2;
        i
++;
    }

    
return i;
}

int findAnswer(int k,int a,int arr[14],int bsize)
{
    
int ret = 1;
    
for(int i=0;i<bsize;i++)
    
{
        
if(arr[i])
            ret
=(ret*a*(1<<i))%k;
        
else
            ret
=(ret*(1<<i))%k;
    }

    
return ret;
}

int main()
{
    
int a,n,k=1;
    
while(!cin.eof())
    
{
        cin
>>a;
            
if(a==-1break;
        cin
>>n>>k;
        
int arr[14]={0};
        
int bsize = convertToBin(n,arr);
        cout
<<findAnswer(k,a,arr,bsize)<<endl;
    }

}

posted @ 2007-06-01 22:49 Gohan 閱讀(295) | 評論 (0)編輯 收藏

一些關于Win32 Programming的體會--讀畢第6章WindowsShellProgramming

這章用到比較多的兩個接口
IShellLink IPersistFile
兩個COM接口,一個ShellLink提供對于快捷方式信息存取的方法,但是如果要載入或保存快捷方式,需要通過ShellLink Query一個IPersistFile接口,使用IPersistFile的載入保存方法.
貼載入與讀取的這段

 1WCHAR wszLnkFile[MAX_PATH] = {0};
 2IShellLink* pShellLink = NULL;
 3   IPersistFile* pPF = NULL;
 4
 5   // Create the appropriate COM server
 6   HRESULT hr = CoCreateInstance(CLSID_ShellLink, NULL,
 7                                 CLSCTX_INPROC_SERVER, IID_IShellLink,
 8                                 reinterpret_cast<LPVOID*>(&pShellLink));
 9   if(FAILED(hr))
10      return hr;
11
12   // Get the IPersistFile interface to load the LNK file
13   hr = pShellLink->QueryInterface(IID_IPersistFile, reinterpret_cast<LPVOID*>(&pPF));
14   if(FAILED(hr))
15   {
16      pShellLink->Release();
17      return hr;
18   }

19 MultiByteToWideChar(CP_ACP, 0, szLnkFile, -1, wszLnkFile, MAX_PATH);
20   hr = pPF->Load(wszLnkFile, STGM_READ);
21   if(FAILED(hr))
22   {
23      pPF->Release();
24      pShellLink->Release();
25      return hr;
26   }

27
28   //現在可以用pShellLink了
29  hr = pPF->Save(wszLnkFile, TRUE);
30
31   // Clean up
32   pPF->Release();
33   pShellLink->Release();
34

下面這段是一個Drag的例子
 WindowFromPoint(pt)感覺很強,可以獲取pt點(屏幕坐標系)的窗體對象
DragQueryFile來分析hDrop
hDrop是WM_DROPFILES事件的(wParam)參數,類型為HDROP
一般都用reinterpret_cast轉換

      POINT pt;
   DragQueryPoint(hDrop, 
&pt);
   ClientToScreen(hDlg, 
&pt);
   HWND hwndDrop 
= WindowFromPoint(pt);
   
if(hwndDrop != GetDlgItem(hDlg, IDC_VIEW))
   
{
      Msg(__TEXT(
"Sorry, you have to drop over the list view control!"));
      
return;
   }


   
// Now check the files
   int iNumOfFiles = DragQueryFile(hDrop, -1, NULL, 0);
   
for(int i = 0 ; i < iNumOfFiles; i++)
   
{
      TCHAR szFileName[MAX_PATH] 
= {0};
      DragQueryFile(hDrop, i, szFileName, MAX_PATH);
      
//獲得了文件名,index為i的
   }


   DragFinish(hDrop);


posted @ 2007-05-27 00:50 Gohan 閱讀(494) | 評論 (0)編輯 收藏

這兩天看書體會

看 VC++Win Shell Programming

對win32 編程有點體會
了解了一些HIMAGELIST 這個win32結構
很多ImageList_XXX函數
還有就是IShellFolder這個接口
LPSHELLFOLDER
有很多SHXX函數用

今天來再更新一點

IShellFolder Interface 接口的成員


The IShellFolder interface is used to manage folders. It is exposed by all Shell namespace folder objects.

IShellFolder Members

BindToObject Retrieves an IShellFolder object for a subfolder.書上有講
BindToStorage Requests a pointer to an object's storage interface.
CompareIDs Determines the relative order of two file objects or folders, given their item identifier lists.
CreateViewObject Requests an object that can be used to obtain information from or interact with a folder object.
EnumObjects Allows a client to determine the contents of a folder by creating an item identifier enumeration object and returning its IEnumIDList interface. The methods supported by that interface can then be used to enumerate the folder's contents.下面有IEnumIDList的成員
GetAttributesOf Retrieves the attributes of one or more file or folder objects contained in the object represented by IShellFolder.
GetDisplayNameOf Retrieves the display name for the specified file object or subfolder.
書上有講
GetUIObjectOf Retrieves an OLE interface that can be used to carry out actions on the specified file objects or folders.書上有講
ParseDisplayName Translates a file object's or folder's display name into an item identifier list.書上有講
SetNameOf Sets the display name of a file object or subfolder, changing the item identifier in the process.

 

IEnumIDList Interface


The IEnumIDList interface provides a standard set of methods that can be used to enumerate the pointers to item identifier lists (PIDLs) of the items in a Shell folder. When a folder's IShellFolder::EnumObjects method is called, it creates an enumeration object and passes a pointer to the object's IEnumIDList interface back to the caller.

IEnumIDList Members

Clone Creates a new item enumeration object with the same contents and state as the current one.
Next Retrieves the specified number of item identifiers in the enumeration sequence and advances the current position by the number of items retrieved.
Reset Returns to the beginning of the enumeration sequence.
Skip Skips over the specified number of elements in the enumeration sequence.

posted @ 2007-05-20 01:14 Gohan 閱讀(461) | 評論 (0)編輯 收藏

僅列出標題
共16頁: First 8 9 10 11 12 13 14 15 16 
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲欧美精品suv| 久久免费精品视频| 一区二区三区在线免费观看| 欧美激情亚洲一区| 国产亚洲精品福利| 在线一区二区三区做爰视频网站 | 久久黄色影院| 午夜精品亚洲一区二区三区嫩草| 欧美国产日韩亚洲一区| 久久亚洲图片| 国产字幕视频一区二区| 亚洲一线二线三线久久久| 99精品国产热久久91蜜凸| 久久久九九九九| 久久久久久夜| 韩国三级电影久久久久久| 欧美亚洲一区| 久久久人成影片一区二区三区| 黄色精品一区二区| 欧美日韩国产另类不卡| 亚洲国产成人久久| 久久天天躁狠狠躁夜夜av| 亚洲国产精品一区二区第一页| 在线成人黄色| 久久五月天婷婷| 亚洲乱码久久| 午夜精品成人在线| 亚洲黄页一区| 欧美久久久久久蜜桃| 亚洲三级影片| 亚洲一区二区日本| 国产精品一级二级三级| 亚洲综合色网站| 久久九九国产精品怡红院| 国内视频精品| 欧美亚州韩日在线看免费版国语版| 日韩一级精品| 欧美一区二区视频免费观看| 国产日韩欧美在线播放| 久久精品视频播放| 亚洲一区不卡| 亚洲狼人综合| 欧美激情精品久久久久久变态| 欧美在线视频免费观看| 狠狠干综合网| 国产精品久久一区二区三区| 久久精品免费电影| 亚洲在线播放| 99re亚洲国产精品| 亚洲国产欧美精品| 麻豆av一区二区三区久久| 亚洲狼人综合| 国产精品欧美久久| 亚洲一线二线三线久久久| 91久久国产综合久久| 亚洲一区久久| 一区二区在线看| 国产视频欧美视频| 国产欧美91| 欧美高清一区| 免费久久99精品国产自| 亚洲美女诱惑| 亚洲国产一区二区三区a毛片 | 另类人畜视频在线| 一区二区欧美日韩| 久热精品视频在线| 欧美一区二区三区在线| 欧美亚洲视频在线观看| 91久久精品国产91久久性色tv| 国产精品免费一区二区三区观看| 欧美日韩免费一区二区三区视频| 久久国产精品一区二区三区| 亚洲欧美综合一区| 亚洲精品久久久久久久久久久久久| 欧美不卡高清| 久久久久久国产精品mv| 久久精品亚洲一区二区| 日韩亚洲一区在线播放| 99av国产精品欲麻豆| 一区二区三区国产在线| 一区二区三区在线视频免费观看| 好看的av在线不卡观看| 在线免费观看欧美| 国产精品视屏| 国产午夜精品理论片a级探花 | 亚洲欧美日韩视频二区| 欧美一区二区视频在线观看| 久久九九免费| 欧美成人首页| 久久久综合网| 欧美激情一区二区三区在线视频观看| 亚洲成色777777在线观看影院| 久久国产精品毛片| 美女在线一区二区| 久久精品系列| 欧美高清在线一区| 亚洲精品国精品久久99热| 中日韩美女免费视频网址在线观看| 亚洲一区二区三区在线视频| 久久精品国产2020观看福利| 欧美高清视频一二三区| 欧美深夜影院| 国产精品a久久久久| 国产亚洲激情| 亚洲日本理论电影| 日韩午夜av| 欧美一区二区视频网站| 欧美国产丝袜视频| 一本色道久久综合亚洲二区三区| 销魂美女一区二区三区视频在线| 亚洲欧美一区二区原创| 久久亚洲精品一区| 国产精品久久久久9999| 国产精品蜜臀在线观看| 在线观看国产成人av片| 亚洲视频一区二区在线观看 | 亚洲精品影院在线观看| 欧美一区二区在线视频| 欧美激情亚洲| 午夜精品免费视频| 欧美国产一区二区| 国产综合色精品一区二区三区| 亚洲精品国产日韩| 久久激情视频| 99热精品在线| 国产精品99久久久久久久女警 | 亚洲精品网站在线播放gif| 欧美一区二区三区视频在线| 欧美精品激情在线| 欧美日韩亚洲网| 伊人婷婷欧美激情| 午夜精品视频| 亚洲精品一品区二品区三品区| 久久精品国产欧美亚洲人人爽| 欧美亚州韩日在线看免费版国语版| 亚洲高清在线精品| 亚洲视频久久| 亚洲国产福利在线| 久久人人九九| 国产亚洲在线| 欧美夜福利tv在线| 一区二区日本视频| 欧美精品一区在线播放| 亚洲国产cao| 久久最新视频| 久久久国产精品一区二区中文 | 欧美成人综合| 久久亚洲春色中文字幕| 国产在线拍揄自揄视频不卡99| 亚洲欧美日韩在线播放| 99re6热只有精品免费观看 | 国产精品福利网| 在线综合亚洲| 日韩一级黄色av| 欧美日韩午夜激情| 中文精品视频| 亚洲免费成人av电影| 欧美日韩国产页| 一本一本久久a久久精品综合麻豆| 性视频1819p久久| 亚洲一区3d动漫同人无遮挡| 噜噜噜91成人网| 国产精品一区二区三区观看| 亚洲一区国产视频| 亚洲网站在线看| 国产精品一区二区黑丝| 香蕉久久a毛片| 午夜精品在线视频| 国产亚洲欧美一区在线观看 | 亚洲少妇中出一区| 国产精品卡一卡二| 欧美一级夜夜爽| 久久se精品一区二区| 欧美网站在线观看| 亚洲欧美日韩国产综合精品二区| 亚洲视频碰碰| 国产精品主播| 免费在线观看日韩欧美| 免费成人性网站| 一区二区激情小说| 亚洲图片激情小说| 国内成+人亚洲+欧美+综合在线| 噜噜噜噜噜久久久久久91| 玖玖国产精品视频| 9色porny自拍视频一区二区| 亚洲最新在线| 国产主播一区二区三区四区| 欧美成人精品在线| 欧美日韩国产专区| 欧美一区二区三区免费观看视频| 欧美在线观看你懂的| 亚洲人成小说网站色在线| 99www免费人成精品| 国产色爱av资源综合区| 欧美成人午夜免费视在线看片| 欧美日韩国产欧| 久久九九有精品国产23| 欧美国产综合| 欧美主播一区二区三区| 欧美大片一区二区三区|