真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

【GPLT】2021CCCC天梯賽題解-創(chuàng)新互聯(lián)

更好的閱讀體驗:GPLT 2021CCCC天梯賽題解

成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站制作、成都網(wǎng)站建設(shè)、朝陽網(wǎng)絡(luò)推廣、小程序開發(fā)、朝陽網(wǎng)絡(luò)營銷、朝陽企業(yè)策劃、朝陽品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們大的嘉獎;成都創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供朝陽建站搭建服務(wù),24小時服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.comL1-人與神

解題思路
直接輸出To iterate is human, to recurse divine.即可

#includeusing namespace std;

int main()
{cout<<"To iterate is human, to recurse divine."<
L1-兩小時學(xué)完C語言

解題思路
已看的字?jǐn)?shù): k ? m k\cdot{m} k?m.
總字?jǐn)?shù): N N N.
答案(剩余字?jǐn)?shù)): N ? k ? m N-k\cdot{m} N?k?m.

#includeusing namespace std;

const int N=100010;

int n,k,m;

int main()
{cin>>n>>k>>m;
    cout<
L1-強迫癥

解題思路
字符串處理問題,s.substr(i,j)表示從字符串s的第i位開始往后截取j位的新字符串
分別處理4位和6位的情況即可,詳細(xì)見代碼

#includeusing namespace std;

int main()
{string s; cin>>s;
    if(s.size()==4) {int t=stoi(s.substr(0,2));
        if(t<22) t=20;
        else t=19;
        cout<cout<
L1-降價提醒機器人

解題思路
輸出所有小于m的值,格式化輸出,保留一位小數(shù)

#includeusing namespace std;

int n;
double m;

int main()
{cin>>n>>m;
    while(n--)
    {double x; cin>>x;
        if(x
L1-大笨鐘的心情

解題思路
哈希每一個時刻的心情指數(shù),判斷 Yes/No 輸出

#includeusing namespace std;

const int N=110;

int st[N];

int main()
{for(int i=0;i<24;i++) cin>>st[i];
    int k; 
    while(cin>>k, k>=0 && k<=23)
    {cout<50?" Yes":" No")<
L1-吉老師的回歸

解題思路
判斷每一個題目中有無"easy""qiandao",無則累加次數(shù),最后判斷輸出
s.find(t)表示在字符串s中查找字符串t,常量string::npos表示沒有查找到

#includeusing namespace std;

const int N=50;

int n, m;

int main()
{cin>>n>>m;
    getchar();
    int k=0;
    for(int i=1;i<=n;i++)
    {string s; getline(cin, s);
        if(s.find("qiandao")==string::npos && s.find("easy")==string::npos) {//兩個都不存在
            k++;
            if(k>m) {cout<
L1-天梯賽的善良

解題思路
用兩個變量存一個大值和最小值,再循環(huán)一遍計算答案

#includeusing namespace std;

const int N=20010;

int n, a[N];

int main()
{cin>>n;
    int minv=1e9, maxv=0;
    for(int i=1;i<=n;i++) 
    {scanf("%d", &a[i]);
        minv=min(minv, a[i]);
        maxv=max(maxv, a[i]);
    }

    int res1=0, res2=0;
    for(int i=1;i<=n;i++) 
    {if(a[i]==minv) res1++;
        if(a[i]==maxv) res2++;
    }

    cout<
L1-乘法口訣序列

解題思路
動態(tài)處理,每次乘積大是81,兩位數(shù)
一直處理到序列長度達(dá)到n為止

#includeusing namespace std;

int n;

int main()
{int a1, a2; cin>>a1>>a2>>n;
    vectorres({a1, a2});
    for(int i=0;res.size()int m=res[i]*res[i+1];
        if(m>=10) res.push_back(m/10);
        res.push_back(m%10);
    }

    cout<

L2-包裝機

解題思路
模擬,注意一些細(xì)節(jié)處理

#include#define x first
#define y second
#define all(x) x.begin(),x.end()
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pairPII;
typedef pairPLI;
const int INF=0x3f3f3f3f,MOD=1000000007,P=131,N=110;

int n,m,S;
string orbit[N];
stackbasket;
string res;

int main()
{cin>>n>>m>>S;
    for(int i=1;i<=n;i++) 
    {cin>>orbit[i];
        reverse(all(orbit[i]));
    }
    int x;
    while(cin>>x, x!=-1)
    {if(x==0 && basket.size()>0) 
        {res.push_back(basket.top());
            basket.pop();
        }
        if(orbit[x].size()>0)
        {if(basket.size()==S) 
            {res.push_back(basket.top());
                basket.pop();
            }
            basket.push(orbit[x].back());
            orbit[x].pop_back();
        }
    }

    cout<
L2-病毒朔源

解題思路
首先分析題目,每種病毒只能由一種病毒變異而來,所以是樹結(jié)構(gòu)。然后dfs遍歷一遍。要從根節(jié)點出發(fā)(入度為0的點:d[root]=0),長度相同要注意字典序最小。

#include#define x first
#define y second
#define all(x) x.begin(),x.end()
#define rep(i, l, r) for (int i = l; i<= r; i++)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pairPII;
typedef pairPLI;
const int INF=0x3f3f3f3f,MOD=1000000007,P=131,N=10010,M=1000010;

int h[N], e[M], ne[M], idx;
int n, d[N];
int nex[N];

void add(int a, int b)
{e[idx]=b, ne[idx]=h[a], h[a]=idx++;
}

int dfs(int u)
{int res=0, val=-1;
    for(int i=h[u];~i;i=ne[i])
    {int j=e[i];
        int t=dfs(j);
        if(t>res || (t==res && jcin>>n;
    memset(h, -1, sizeof h);
    memset(nex, -1, sizeof nex);

    for(int i=0;iint num; scanf("%d", &num);
        while(num--)
        {int x; scanf("%d", &x);
            add(i, x);
            d[x]++;
        }
    }

    int root=-1;
    for(int i=0;iroot=i;
            break;
        }

    dfs(root);
    vectorres({root});
    while(nex[root]!=-1)
    {res.push_back(nex[root]);
        root=nex[root];
    }

    cout<
L2-清點代碼庫

解題思路
做法1:可以用map做,會比較好寫,key值是每一個序列,用vector存儲,默認(rèn)按vector里每一個項的值來排序。value是出現(xiàn)的次數(shù)。最后排序一遍輸出。
做法2:unnordered_map+ 自定義排序規(guī)則也可以做。

#include#define x first
#define y second
#define all(x) x.begin(),x.end()
#define rep(i, l, r) for (int i = l; i<= r; i++)
#define nep(i, r, l) for (int i = r; i >= l; i--)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pairPII;
typedef pairPLI;
const int INF=0x3f3f3f3f,MOD=1000000007,P=18869,N=10010,M=110;

int n, m;
map, int >mp;
vector>>ans;

int main()
{cin>>n>>m;
    rep(i,1,n)
    {vectort;
        rep(j,1,m) 
        {int x; scanf("%d", &x);
            t.push_back(x);
        }
        mp[t]++;
    }

    for(auto val: mp) ans.push_back({-val.y, val.x});

    sort(all(ans));
    cout<printf("%d", -ans[i].x);
        for(auto x: ans[i].y) printf(" %d", x);
        puts("");
    }

    return 0;
}
L2-哲哲打游戲

解題思路
也是一道模擬題

#include#define x first
#define y second
#define all(x) x.begin(),x.end()
#define rep(i, l, r) for (int i = l; i<= r; i++)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pairPII;
typedef pairPLI;
const int INF=0x3f3f3f3f,MOD=1000000007,P=131,N=100010,M=2*N;

int n, m;
vectorplot[N];
int arch[N];

int main()
{cin>>n>>m;
    rep(i,1,n)
    {int K; scanf("%d",&K);
        while(K--) {int x; scanf("%d", &x);
            plot[i].push_back(x);
        }
    }

    int location=1;
    while(m--)
    {int op,k;
        scanf("%d%d", &op,&k);
        if(op==0) location=plot[location][k-1];
        else if(op==1){printf("%d\n", location);
            arch[k]=location;
        } else location=arch[k];
    }

    cout<

L3-森森旅游

解題思路
圖論題
做法1:分別存一個起點和終點到所有點的距離,用dist1dist2來表示,用dijkstra處理。
因為要在某一個點全部換成旅游金,所以以這個中途點為單位(換成旅游金)求一遍起點到終點的費用,放進堆中,方便求最小值。每一個中途點計算起點到終點的費用為: d i s t 1 [ i ] + ( d i s t 2 [ i ] + a [ i ] ? 1 ) / a [ i ] dist1[i]+(dist2[i]+a[i]-1)/a[i] dist1[i]+(dist2[i]+a[i]?1)/a[i],加a[i]-1是上取整。
最后處理每一個匯率變化即可。由于每一次匯率變化都放進堆里,所以可能存在之前的匯率沒有刪除,因此取堆頂?shù)臅r候要特判每一個數(shù)據(jù),如果計算出來的費用與當(dāng)前匯率計算出來的不一樣,就是舊數(shù)據(jù)。

做法2:用pair將費用和節(jié)點捆綁處理,再用set去重,這樣 可以刪除原先的匯率,用set內(nèi)置的find函數(shù)查找刪除。

#include#define x first
#define y second
#define all(x) x.begin(),x.end()
#define rep(i, l, r) for (int i = l; i<= r; i++)
#define nep(i, r, l) for (int i = r; i >= l; i--)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pairPII;
typedef pairPLI;
const int INF=0x3f3f3f3f, MOD=1000000007,P=131,N=100010,M=4*N;
const LL LNF=0x3f3f3f3f3f3f3f3f;

int h1[N], h2[N], e[M], ne[M], w[M], idx;
LL dist1[N], dist2[N];
bool st[N];
int n, m, q;
int a[N];
priority_queue, greater>heap;

void add(int a, int b, int c, int d)
{e[idx]=b, w[idx]=c, ne[idx]=h1[a], h1[a]=idx++;
    e[idx]=a, w[idx]=d, ne[idx]=h2[b], h2[b]=idx++;
}

void dijkstra(LL dist[], int s, int h[])
{memset(st, 0, sizeof st);
    memset(dist, 0x3f, sizeof dist1);
    priority_queue, greater>q;
    q.push({0, s});
    dist[s]=0;
    while(q.size())
    {PLI t=q.top(); q.pop();
        if(st[t.y]) continue;
        st[t.y]=true;
        
        for(int i=h[t.y];~i;i=ne[i])
        {int j=e[i];
            if(st[j]) continue;
            dist[j]=min(dist[j], dist[t.y]+w[i]);
            q.push({dist[j], j});
        }
    }
}

int main()
{cin>>n>>m>>q;
	memset(h1, -1, sizeof h1);
	memset(h2, -1, sizeof h2);
	while(m--)
	{int a, b, c, d; scanf("%d%d%d%d", &a, &b, &c, &d);
	    add(a, b, c, d);
	}
	
	dijkstra(dist1, 1, h1);
	dijkstra(dist2, n, h2);
	
	rep(i,1,n) 
	{scanf("%d", &a[i]);
	    if(dist1[i]!=LNF && dist2[i]!=LNF) 
	        heap.push({dist1[i]+(dist2[i]+a[i]-1)/a[i], i});
	}
	
	while(q--)
	{int x, aa; scanf("%d%d", &x, &aa);
	    a[x]=aa;
	    if(dist1[x]!=LNF && dist2[x]!=LNF) heap.push({dist1[x]+(dist2[x]+aa-1)/aa, x});
	    while(true)
	    {PLI t=heap.top();
	        if((dist2[t.y]+a[t.y]-1)/a[t.y]+dist1[t.y] != t.x){//匯率更改了
	            heap.pop();
	            continue;
	        }
	        printf("%lld\n", t.x);
	        break;
	    }
	}
	
	return 0;
}
L3-還原文件

解題思路
暴搜,雖說是暴搜,但是別太暴力,每一組序列哈希成一個值,這樣不會TLE。
,每一次搜索判斷哈希值是否匹配即可。

#include#define rep(i, l, r) for (int i = l; i<= r; i++)
using namespace std;
typedef unsigned long long ULL;
const int INF=0x3f3f3f3f,MOD=1000000007,P=131,N=100010,M=110;

ULL hup[N], p[N], hdown[M];
int width[M];
int n, m, h[N];
int ans[M];
bool st[M];

ULL get_hcode(int l, int r)
{return hup[r]-hup[l-1]*p[r-l+1];
}

bool dfs(int u, int s)
{if(s==n) return true;
    for(int i=1;i<=m;i++)
    {int e=s+width[i]-1;
        if(st[i]) continue;
        if(e<=n && hdown[i]==get_hcode(s, e)) {st[i]=true;
            ans[u]=i;
            if(dfs(u+1, e)) return true;
            st[i]=false;
        }
    }
    
    return false;
}

int main()
{cin>>n;
	p[0]=1;
	rep(i,1,n) 
	{scanf("%d", &h[i]);
	    p[i]=p[i-1]*P;
	    hup[i]=hup[i-1]*P+h[i];
	}
	cin>>m;
	rep(i,1,m){scanf("%d", &width[i]);
	    rep(j,1,width[i]) {int x; scanf("%d", &x);
	        hdown[i]=hdown[i]*P+x;
	    }
	}
	
	dfs(1, 1);
	
	printf("%d", ans[1]);
	rep(i,2,m) printf(" %d", ans[i]);
	
	return 0;
}
L3-可憐的簡單題

解題思路
不會, 2333

總結(jié)

L1更偏向語法題,解釋較少,小白看不懂的語法部分可以上網(wǎng)搜索
L2多屬模擬題和算法題
L3多屬算法題

你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


分享文章:【GPLT】2021CCCC天梯賽題解-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/depodh.html

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部