UVA1225 Digit Counting
阿新 • • 發佈:2018-11-11
Digit Counting
題目大意:輸入一個數字T,代表有T組測試資料,下面每行有一個整數n,求將1到n的數字連成一串後每個數字出現的個數。
AC程式碼:
#include <cstdio> #include <iostream> #include <algorithm> #include <cmath> #include <cstdlib> #include <cstring> #include <map> #include <stack> #include <queue> #include <vector> #include <bitset> #include <set> #include <utility> #include <sstream> using namespace std; typedef long long ll; #define inf 0x3f3f3f3f #define rep(i,l,r) for(int i=l;i<=r;i++) #define lep(i,l,r) for(int i=l;i>=r;i--) #define ms(arr) memset(arr,0,sizeof(arr)) //priority_queue<int,vector<int> ,greater<int> >q; const int maxn = (int)1e5 + 5; const ll mod = 1e9+7; char str[]={"0123456789"}; int main() { //freopen("in.txt", "r", stdin); //freopen("out.txt", "w", stdout); ios::sync_with_stdio(0),cin.tie(0); int T; cin>>T; while(T--) { int n; cin>>n; string s; rep(i,1,n) { stringstream nape1; //定義一個輸出字串流 string nape; nape1<<i; //將int型轉化為字元型 nape1>>nape; s+=nape; //連線存到string中 } int len=s.size(); map<char,int> m; for(int i=0;i<len;i++) { m[s[i]]++; //計數 } for(int i=0;i<9;i++) cout<<m[str[i]]<<" "; cout<<m[str[9]]<<endl; } return 0; }