Thuật toán: Cài đặt theo mô tả bài toán.
Duyệt từ cuối dòng đến đầu dòng, làm các công việc sau:
- Đếm số làn xuất hiện kí tự ':'.
- Tại vị trí xuất hiện kí tự ':', ghi nhận số lượng của kí tự nằm giữa hai kí tự ':'....':'.
- Quét lại đầu dòng để in ra.
/*
Coder : Nguyen Duc Tam
*/
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<set>
#include<vector>
#include<utility>
#include<map>
#include<list>
#include<queue>
#include<deque>
#include<stack>
#include<cstring>
#include<string>
#include<cmath>
#include<cstdlib>
#include<iomanip>
#include<ctime>
using namespace std;
#define REP(i, start, end, step) for(int i = start; i < end; i += step)
#define DOWN(i, start, end, step) for(int i = start; i > end; i -= step)
#define FOR(it,c) for(__typeof((c).begin()) it = (c).begin(); it != (c).end(); it++)
#define ALL(c) (c).begin(), (c).end()
#define SZ(x) ((int)(x).size())
#define X first
#define Y second
#define L(x,i) ((x) << (i))
#define R(x,i) ((x) >> (i))
#define AND(a,b) ((a) & (b))
#define OR(a,b) ((a) | (b))
#define XOR(a,b) ((a) ^ (b))
#define NOT(a) (~(a))
#define SB(x,i) (OR((x), L(1, (i)))) // x | 1 << i
#define CB(x,i) (AND((x),NOT(L(1,(i))))) // x & ~(1 << i)
#define TB(x,i) (AND((x), L(1,(i)))) // x & (1 << i)
#define FILL(a,val) memset(a,val,sizeof(a));
#define INIT(a,l,r,val) REP(i,l,r,1) (a)[i] = val;
#define DIG(c) (int)((c) - '0')
#define CHR(c) (char)((c) + '0')
#define LOW(c) (char)((c) + 32)
#define UPP(c) (char)((c) - 32)
#define EPS 1e-7
#define OO 1000000005
#define N 100005
const int DAY[13] = {-1,31,29,31,30,31,30,31,31,30,31,30,31};
const int dx4[4] = {};
const int dy4[4] = {};
const int dx8[8] = {};
const int dy8[8] = {};
typedef pair<int,int> II;
typedef pair<II,int> D;
typedef long long LL;
typedef unsigned long long ULL;
typedef unsigned char UC;
vector<int>::iterator it, low, up; // using FOR, lower_bound, upper_bound
pair<vector<int>,vector<int> > bound; // using function equal_range(first, last, x)
int n,_count,next[35],pos;
string s,res;
int main()
{
#define Off true
if(Off)
{
freopen("input.txt","r",stdin);
freopen("output.txt","w",stdout);
}
cin >> n;
REP(i,0,n,1)
{
cin >> s;
res = "";
_count = 0;
pos = s.size();
INIT(next,0,33,0);
DOWN(ii,s.size() - 1,-1,1)
if(s[ii] == ':')
{
next[ii] = pos;
pos = ii;
_count++;
}
REP(ii,pos,4,1)
res = res + "0";
REP(ii,0,s.size(),1)
if(s[ii] == ':')
{
if(s[ii+1] == ':')
{
while(++_count <= 8)
{
res = res + ":0000";
}
}
else
{
res = res + ":";
REP(k,next[ii] - ii,5,1) res = res + "0";
}
}
else
res = res + s[ii];
cout << res << endl;
}
return 0;
}
Không có nhận xét nào:
Đăng nhận xét