1. 程式人生 > >10.1綜合強化刷題 Day6

10.1綜合強化刷題 Day6

iostream c代碼 con 剩余定理 否則 字符串 lag src spa

T1 排序

題目描述

小Z 有一個數字序列a1; a2; .... ; an,長度為n,小Z 只有一個操作:選

定p(1<p<n),然後把ap 從序列中拿出,然後再插?到序列中任意位置。

比如a 序列為1,2,4,5,3,p = 5,可以取出3,然後在任意位置插入,可

以變為1,2,3,4,5。

現在給你一個序列a,問你是否可以通過一次操作把整個序列從小到大

排好序(變成不降的)。

輸入輸出格式

輸入格式:

第一行一個整數n,第二行空格隔開的n 個整數,代表a 序列。

輸出格式:

如果可以n次操作可以排好序,輸出”YES”,否則輸出”NO”。

輸入輸出樣例

輸入樣例#1:
5
1 2 4 5 3
輸出樣例#1:
YES

說明

對於30% 的數據,滿足n <=1000。

對於60% 的數據,滿足n <=10^5。

對於100% 的數據,滿足n <=10^6; 1 <=ai <=10^6。

一個大模擬、、挺水的(具體模擬過程看代碼吧)

技術分享
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 1000010
using
namespace std; int n,s,a[N],b[N]; int read() { int x=0,f=1; char ch=getchar(); while(ch<0||ch>9) {if(ch==-)f=-1; ch=getchar();} while(ch>=0&&ch<=9) x=x*10+ch-0,ch=getchar(); return x*f; } int main() { // freopen("sort.in","r",stdin); // freopen("sort.out","w",stdout);
n=read(); for(int i=1;i<=n;i++) a[i]=read(),b[i]=a[i]; for(int i=2;i<=n;i++) { if(b[i]>=b[i-1]) continue; s++; if(b[i-2]>b[i]&&b[i-2]>b[i+1]) {printf("NO"); return 0;} if(b[i-1]>b[i+1]) b[i]=b[i-2]; else b[i]=b[i-1]; if(s>1) {printf("NO"); return 0;} } printf("YES"); return 0; }
AC代碼

T2 同余方程組

題目描述

求關於x 的同余方程組

x%a1 = b1
x%a2 = b2
x%a3 = b3
x%a4 = b4
的大於等於0 的最小整數解。

輸入輸出格式

輸入格式:

一行8 個整數,表示a1; b1; a2; b2; a3; b3; a4; b4。

輸出格式:

一行一個整數,答案除以p 的余數。

輸入輸出樣例

輸入樣例#1:
2 0 3 1 5 0 7 3
輸出樣例#1:
10

說明

對於30% 的數據,ai <=40, 保證ai 均為素數。

對於60% 的數據,1 <=ai <=10^3, 保證ai 均互素。

對於100% 的數據,0 <= bi < ai; 1 <=ai <= 10^3。

中國剩余定理裸題

技術分享
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#define N 5
#define ll long long 
using namespace std;
ll n,m[N],a[N],m1,e;
ll read()
{
    ll x=0,f=1; char ch=getchar();
    while(ch<0||ch>9){if(ch==-)f=-1; ch=getchar();}
    while(ch>=0&&ch<=9){x=x*10+ch-0; ch=getchar();}
    return x*f;
}
ll exgcd(ll a,ll b,ll &x,ll &y)
{
    if(b==0)
    {
        x=1,y=0;
        return a;
    }
    ll r=exgcd(b,a%b,x,y),tmp;
    tmp=x,x=y,y=tmp-a/b*y;
    return r;
}
ll crt()
{
    ll a1=a[1],a2,m2,d,c;m1=m[1];
    for(ll i=2;i<=n;++i)
    {
        a2=a[i],m2=m[i];
        c=a2-a1;ll x=0,y=0;
        d=exgcd(m1,m2,x,y);
        if(c%d) return  -1;
        x=x*c/d;
        int mod=m2/d;
        x=(mod+x%mod)%mod;
        a1+=m1*x;m1*=mod;
    }
    return a1;
}
int main()
{
//    freopen("mod.in","r",stdin);
//    freopen("mod.out","w",stdout);
    n=4;
    for(int i=1;i<=n;i++) 
     m[i]=read(),a[i]=read();
    printf("%lld\n",crt());
    return 0;
}
Ac代碼

T3 字符串

題目描述

如果把一個字符串從頭到尾翻轉後和原字符串相等,我們稱之為回文串,比如“aabaa”、“())(”、“2017102”。

如果一個字符串存在兩個出現過的字母出現的次數相等,我們稱之為好

的字符串。

現在給一個由小寫字母組成的字符串,問在這個字符串的所有連續的串

中,好的回文串有多少個。(兩個相同的回文串出現在不同位置算多次)。

輸入輸出格式

輸入格式:

一行一個小寫字母組成的字符串。

輸出格式:

一行一個整數,表示答案。

輸入輸出樣例

輸入樣例#1:
abcbaabcba
輸出樣例#1:
6
【樣例解釋】
abcba s[1..5] a,b 出現次數相等
baab s[4..7] a,b 出現次數相等
cbaabc s[3..8] a,b 出現次數相等
bcbaabcb s[2..9] a,c 出現次數相等
abcbaabcba s[1..10] a,b 出現次數相等
abcba s[6..10] a,b 出現次數相等

說明

len 表示字符串長度。

對於30% 的數據, len <=10^2。

對於60% 的數據, len <= 10^3。

對於100% 的數據,1 <= len <= 10^4。

考試的時候,有位大智障竟然用(s[k]==s[j])!=0來判斷,s[k]==s[j]&&s[k]!=0&&s[j]!=0 (捂臉、、)竟然在while裏面先讓b++,e--在統計這兩個地方的每個字符的個數、、、(智障啊、、)

技術分享
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 10010
using namespace std;
bool flag;
char ch[N];
int n,b,e,ans,s[N];
int main()
{    
    cin>>ch;n=strlen(ch);
    for(int l=3;l<n;l++)
     for(int i=0;i<n-l;i++)
     {
         b=i,e=l+i;flag=false;
         memset(s,0,sizeof(s));
         while(b<=e)
         {
               if(ch[e]!=ch[b]) {flag=true;break;}
               if(b==e) s[ch[e]-a]++;
               else s[ch[e]-a]+=2;
               b++,e--;
         }
         for(int j=0;j<26;j++)
         {
            if(flag) break;
            for(int k=0;k<26;k++)
              if(s[j]&&s[k]&&s[j]==s[k]&&j!=k) {ans++,flag=true;break;}
         } 
    }
    printf("%d",ans);  
    return 0;
}
30分暴力

氣死我了、、玄學錯誤,一個枚舉長度跟左端點,一個枚舉左右端點,時間復雜度完全一樣,結果一個TLE30分,另一個TLE60分!!!!!!!!

技術分享
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 10010
using namespace std;
char ch[N];
int n,b,e,ans,s[N],tmp[N];
bool pd(int b,int e)
{
    memset(s,0,sizeof(s));
    while(b<=e)
    {
        if(ch[e]!=ch[b]) return false;
        if(b==e) s[ch[e]-a]++;
        else s[ch[e]-a]+=2;
        b++,e--;
    }
    sort(s,s+26);
    for(int i=24;i>=0;--i)
     if(s[i]&&s[i]==s[i+1])  return true;
    return false;
}
int main()
{    
    cin>>ch;n=strlen(ch);
    for(int l=3;l<n;++l)
     for(int i=0;i<n-l;++i)
     {
         b=i,e=l+i;
         if(pd(b,e)) ans++;
    }
    printf("%d",ans);  
    return 0;
}
枚舉長度跟左端點 30分 技術分享
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 10010
using namespace std;
char ch[N];
int n,ans,s[30];
bool pd(int b,int e)
{
    memset(s,0,sizeof(s));
    while(b<=e)
    {
        if(ch[e]!=ch[b]) return false;
        if(b==e) s[ch[e]-a]++;
        else s[ch[e]-a]+=2;
        b++,e--;
    }
    sort(s,s+26);
    for(int i=24;i>=0;--i)
     if(s[i]&&s[i]==s[i+1])  return true;
    return false;
}
int main()
{    
    cin>>ch;n=strlen(ch);
    for(int b=0;b<n-3;++b)
     for(int e=b+3;e<n;++e)
         if(pd(b,e)) ans++;
    printf("%d",ans);  
    return 0;
}
枚舉左右端點 60分

什麽?! s數組開大了?! 開小點就是60?!!!

技術分享
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#define N 10010
using namespace std;
char ch[N];
int n,b,e,ans,s[30];
bool pd(int b,int e)
{
    memset(s,0,sizeof(s));
    while(b<=e)
    {
        if(ch[e]!=ch[b]) return false;
        if(b==e) s[ch[e]-a]++;
        else s[ch[e]-a]+=2;
        b++,e--;
    }
    sort(s,s+26);
    for(int i=24;i>=0;--i)
     if(s[i]&&s[i]==s[i+1])  return true;
    return false;
}
int main()
{    
    cin>>ch;n=strlen(ch);
    for(int l=3;l<n;++l)
     for(int i=0;i<n-l;++i)
     {
         b=i,e=l+i;
         if(pd(b,e)) ans++;
    }
    printf("%d",ans);  
    return 0;
}
枚舉長度跟左端點 60分 技術分享
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <map>
using namespace std;

typedef unsigned long long ULL;
typedef long long LL;

char s[10005];
ULL h[10005],rh[10005],pw[10005];
int L;

ULL hs(int l,int r){
    return h[r]-h[l-1]*pw[r-l+1];
}
ULL rhs(int l,int r){
    return rh[l] - rh[r+1]*pw[r-l+1];
}
struct N{
    int a[26];
    bool ok(){
        int b[26];
        for(int i=0;i<26;i++) b[i]=a[i];
        sort(b,b+26);
        for(int i=0;i<25;i++){
            if(b[i]>0&& b[i] == b[i+1]) return true;
        }
        return false;
    }
    void clear(){
        memset(a,0,sizeof a);
    }
};
LL ans=0;
map<ULL,LL> num;
map<ULL,N> A;
void solve_odd(){
    for(int i=1;i<=L;i++){
        int l = 1,r = min(i,L-i+1)+1;
        while(r-l>1){
            int mid = (l+r)/2;
            if(hs(i-mid+1,i+mid-1)== rhs(i-mid+1,i+mid-1)) l=mid;
            else r=mid;
        }
        int p=l;
        int tmp = p;
        while(tmp>=1&&num.find(hs(i-tmp+1,i+tmp-1))==num.end()) tmp--;
        LL sum = 0;
        N st;
        st.clear();
        if(tmp>=1){
            sum=num[hs(i-tmp+1,i+tmp-1)];
            st = A[hs(i-tmp+1,i+tmp-1)];
        }
        while(tmp<p){
            st.a[s[i+tmp]-a]+= (tmp == 0?1:2);
            if(st.ok()) sum++;
            num[hs(i-tmp,i+tmp)] = sum;
            A[hs(i-tmp,i+tmp)] = st;
            tmp++;
        }
        ans+=sum;
        // printf("# %d %lld\n",i,sum);
    }
}
void solve_even(){
    A.clear();
    num.clear();
    for(int i=1;i<L;i++){
        // printf("### %d\n",i);
        int l = 1,r = min(i,L-i)+1;
        while(r-l>1){
            int mid = (l+r)/2;
            if(hs(i-mid+1,i+mid)== rhs(i-mid+1,i+mid)) l=mid;
            else r=mid;
        }
        int p=l;
        int tmp = p;
        while(tmp>=1&&num.find(hs(i-tmp+1,i+tmp))==num.end()) tmp--;
        LL sum = 0;
        N st;
        st.clear();
        // printf("## %d\n",p);
        if(tmp>=1){
            sum=num[hs(i-tmp+1,i+tmp)];
            st = A[hs(i-tmp+1,i+tmp)];
        }
        while(tmp<p){
            // printf("# %d %lld\n",tmp,sum);
            st.a[s[i+tmp+1]-a]+= 2;
            if(st.ok()) sum++;
            num[hs(i-tmp,i+tmp+1)] = sum;
            A[hs(i-tmp,i+tmp+1)] = st;
            tmp++;
        }
        ans+=sum;
        // printf("# %d %lld\n",i,sum);
    }
}

int main(){
    freopen("str.in","r",stdin);
    freopen("str.out","w",stdout);
    scanf("%s",s+1);
    L=strlen(s+1);
    s[0]=#;
    pw[0]=1;
    for(int i=1;i<=L;i++) pw[i] = pw[i-1]*13131 ;
    for(int i=1;i<=L;i++) h[i] = h[i-1]*13131 + s[i];
    for(int i=L;i>=1;i--) rh[i] = rh[i+1]*13131 + s[i];

    // printf("%llu %llu",hs(1,3),rhs(1,3));
    
    solve_odd();
    solve_even();
    printf("%lld\n",ans);
    fclose(stdout);
    return 0;
}
標稱(字符串+二分)

10.1綜合強化刷題 Day6