程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> Codeforces Round #189 (Div. 2)

Codeforces Round #189 (Div. 2)

編輯:C++入門知識

第一題:基本題,判斷mod 1000,mod 100.,mod 10是不是等於144、14、1,直到為0

代碼如下:


[cpp] 
#include <iostream>  
#include <cstdio>  
#include <cstdlib>  
#include <cmath>  
#include <cstring>  
#include <string>  
#include <vector>  
#include <list>  
#include <deque>  
#include <queue>  
#include <iterator>  
#include <stack>  
#include <map>  
#include <set>  
#include <algorithm>  
#include <cctype>  
using namespace std; 
 
const int N=10001; 
typedef long long LL; 
 
int main() 

    int i,j,t,T,n; 
    int a[3]={144,14,1}; 
    while(cin>>n) 
    { 
        int flag=0; 
        while(n) 
        { 
            if(n%1000==144) 
                n/=1000; 
            else if(n%100==14) 
                n/=100; 
            else if(n%10==1) 
                n/=10; 
            else{ 
            flag=1; 
            break; 
            } 
        } 
        if(flag==0) 
            printf("YES\n"); 
        else 
            printf("NO\n"); 
    } 
    return 0; 

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <queue>
#include <iterator>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <cctype>
using namespace std;

const int N=10001;
typedef long long LL;

int main()
{
    int i,j,t,T,n;
    int a[3]={144,14,1};
    while(cin>>n)
    {
        int flag=0;
        while(n)
        {
            if(n%1000==144)
                n/=1000;
            else if(n%100==14)
                n/=100;
            else if(n%10==1)
                n/=10;
            else{
            flag=1;
            break;
            }
        }
        if(flag==0)
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}

 

 


第二題:給你一些單向路徑。

"1 x y"-----插入

"2 a b"----判斷


讓你判斷能否從a到b。

用深搜,開始的時候vis標記每次做完回溯都修改標記,結果超時了,最後有人說回溯的時候不需要修改,

自己想了想,好像是這樣的,因為是單向的,到達一個點了之後不管後面怎樣都還是可以到這個點。

代碼如下:


[cpp] 
#include <iostream>  
#include <cstdio>  
#include <cstdlib>  
#include <cmath>  
#include <cstring>  
#include <string>  
#include <vector>  
#include <list>  
#include <deque>  
#include <queue>  
#include <iterator>  
#include <stack>  
#include <map>  
#include <set>  
#include <algorithm>  
#include <cctype>  
using namespace std; 
 
typedef long long LL; 
const int N=105; 
 
int parent[N]; 
 
int x[N],y[N]; 
int m,flag; 
int a,b,c; 
int vis[N]; 
 
void dfs(int t) 

    vis[t]=1; 
    if(flag==1) 
        return ; 
    if(t==c) 
    { 
        flag=1; 
        return ; 
    } 
    for(int i=1;i<=m;i++) 
    { 
        if(vis[i]==1) 
            continue; 
        if(x[t]>x[i]&&x[t]<y[i]||y[t]>x[i]&&y[t]<y[i]) 
        { 
            dfs(i);//這個地方不能要 vis[i]=0; 要了就TLE  
        } 
    } 

 
int main() 

    int i,j,t,T,n,xx; 
    scanf("%d",&T); 
    m=0; 
    while(T--) 
    { 
 
        scanf("%d%d%d",&a,&b,&c); 
        if(a==1) 
        { 
            m++; 
            x[m]=b; 
            y[m]=c; 
        } 
        if(a==2) 
        { 
            flag=0; 
            memset(vis,0,sizeof(vis)); 
            dfs(b); 
            if(flag==1) 
                printf("YES\n"); 
            else 
                printf("NO\n"); 
        } 
    } 
    return 0; 

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <queue>
#include <iterator>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <cctype>
using namespace std;

typedef long long LL;
const int N=105;

int parent[N];

int x[N],y[N];
int m,flag;
int a,b,c;
int vis[N];

void dfs(int t)
{
    vis[t]=1;
    if(flag==1)
        return ;
    if(t==c)
    {
        flag=1;
        return ;
    }
    for(int i=1;i<=m;i++)
    {
        if(vis[i]==1)
            continue;
        if(x[t]>x[i]&&x[t]<y[i]||y[t]>x[i]&&y[t]<y[i])
        {
            dfs(i);//這個地方不能要 vis[i]=0; 要了就TLE
        }
    }
}

int main()
{
    int i,j,t,T,n,xx;
    scanf("%d",&T);
    m=0;
    while(T--)
    {

        scanf("%d%d%d",&a,&b,&c);
        if(a==1)
        {
            m++;
            x[m]=b;
            y[m]=c;
        }
        if(a==2)
        {
            flag=0;
            memset(vis,0,sizeof(vis));
            dfs(b);
            if(flag==1)
                printf("YES\n");
            else
                printf("NO\n");
        }
    }
    return 0;
}

 

 


第三題:打表找規律。

從後往前走,

當遇見1的時候,last=(last*2+a4[j])%II;   temp=last;


當遇見0的時候,last=(last*2)%II; 

 

 

代碼如下:


[cpp] 
#include <iostream>  
#include <cstdio>  
#include <cstdlib>  
#include <cmath>  
#include <cstring>  
#include <string>  
#include <vector>  
#include <list>  
#include <deque>  
#include <queue>  
#include <iterator>  
#include <stack>  
#include <map>  
#include <set>  
#include <algorithm>  
#include <cctype>  
using namespace std; 
typedef long long LL; 
const int N=105; 
const LL II=1000000007; 
 
 
char s[N]; 
LL a4[N]; 
 
int main() 

    int i,j,t,T,n,xx; 
    a4[0]=1; 
    for(i=1;i<N;i++) 
    { 
        a4[i]=(a4[i-1]*4)%II; 
        //printf("%lld\n",a4[i]);  
    } 
    scanf("%s",s); 
    int len=strlen(s); 
    int k=0; 
    while(k<len&&s[k]=='0') 
        k++; 
    if(k==len) 
    { 
        printf("0\n"); 
        return 0; 
    } 
    LL last=0,temp=0; 
    for(i=len-1,j=0;i>=k;i--,j++) 
    { 
        if(s[i]=='1') 
        { 
            last=(last*2+a4[j])%II; 
            temp=last; 
        } 
        else 
        { 
            last=(last*2)%II; 
        } 
    } 
    for(i=k-1;i>=0;i--) 
        temp=(temp*2)%II; 
    printf("%lld\n",temp); 
 
    return 0; 

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <deque>
#include <queue>
#include <iterator>
#include <stack>
#include <map>
#include <set>
#include <algorithm>
#include <cctype>
using namespace std;
typedef long long LL;
const int N=105;
const LL II=1000000007;


char s[N];
LL a4[N];

int main()
{
    int i,j,t,T,n,xx;
    a4[0]=1;
    for(i=1;i<N;i++)
    {
        a4[i]=(a4[i-1]*4)%II;
        //printf("%lld\n",a4[i]);
    }
    scanf("%s",s);
    int len=strlen(s);
    int k=0;
    while(k<len&&s[k]=='0')
        k++;
    if(k==len)
    {
        printf("0\n");
        return 0;
    }
    LL last=0,temp=0;
    for(i=len-1,j=0;i>=k;i--,j++)
    {
        if(s[i]=='1')
        {
            last=(last*2+a4[j])%II;
            temp=last;
        }
        else
        {
            last=(last*2)%II;
        }
    }
    for(i=k-1;i>=0;i--)
        temp=(temp*2)%II;
    printf("%lld\n",temp);

    return 0;
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved