程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> BZOJ 2760 JLOI 2011 小A的煩惱 模擬

BZOJ 2760 JLOI 2011 小A的煩惱 模擬

編輯:C++入門知識

BZOJ 2760 JLOI 2011 小A的煩惱 模擬


題目大意:小A有一些煩惱,現在要求你去給他解決一下。


思路:語法基礎題。


CODE:

#include 
#include 
#include 
#include 
#include 
#define MAX 1010
using namespace std;
 
int total,m;
string ans[MAX],name;
int cnt[MAX];
 
int main()
{
    cin >> total;
    for(int num,i = 1; i <= total; ++i) {
        cin >> num >> name;
        ans[0] += name;
        m = max(m,num);
        memset(cnt,0,sizeof(cnt));
        for(int j = 1; j <= num; ++j) {
            string temp;
            cin >> temp;
            ans[j] += temp;
            for(string::iterator it = temp.begin(); it != temp.end(); ++it)
                cnt[j] += *it == ',';
        }
        int _max = *max_element(cnt + 1,cnt + num + 1);
        for(int j = 0; j < MAX; ++j)
            for(int k = cnt[j]; k <= (i == total ? _max - 1:_max); ++k)
                ans[j] += ',';
    }
    for(int i = 0; i <= m; ++i)
        cout << ans[i] << endl;
    return 0;
}

JL的題為什麼這麼弱!!

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