Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time

Given a chemical formula (given as a string), return the count of each atom.

An atomic element always starts with an uppercase character, then zero or more lowercase letters, representing the name.

1 or more digits representing the count of that element may follow if the count is greater than 1. If the count is 1, no digits will follow. For example, H2O and H2O2 are possible, but H1O2 is impossible.

Two formulas concatenated together produce another formula. For example, H2O2He3Mg4 is also a formula.

A formula placed in parentheses, and a count (optionally added) is also a formula. For example, (H2O2) and (H2O2)3 are formulas.

Given a formula, output the count of all elements as a string in the following form: the first name (in sorted order), followed by its count (if that count is more than 1), followed by the second name (in sorted order), followed by its count (if that count is more than 1), and so on.

Example 1:
Input: 
formula = "H2O"
Output: "H2O"
Explanation: 
The count of elements are {'H': 2, 'O': 1}.
Example 2:
Input: 
formula = "Mg(OH)2"
Output: "H2MgO2"
Explanation: 
The count of elements are {'H': 2, 'Mg': 1, 'O': 2}.
Example 3:
Input: 
formula = "K4(ON(SO3)2)2"
Output: "K4N2O14S4"
Explanation: 
The count of elements are {'K': 4, 'N': 2, 'O': 14, 'S': 4}.
Note:

All atom names consist of lowercase letters, except for the first character which is uppercase.
The length of formula will be in the range [1, 1000].
formula will only consist of letters, digits, and round parentheses, and is a valid formula as defined in the problem.

My code:

class Solution(object):
    def countOfAtoms(self, formula):
        """
        :type formula: str
        :rtype: str
        """
        self.dict={}
        self.analyze(formula,0,len(formula),1)
        record=""
        for item in sorted(self.dict):
            if self.dict[item]!=1:
                record=record+str(item)+str(self.dict[item])
            else:
                record=record+str(item)
        return record
    def analyze(self,formula,i,j,multiply):
        k=i
        while k<j:
            print('k value %d, multiply %d j %d'%(k,multiply,j))
            ascii=ord(formula[k])
            #print(ascii)
            if ascii>64 and ascii<=90:
                #print('executing')
                kk=k+1
                while kk<j:
                    ascii=ord(formula[kk])
                    if ascii>=97 and ascii<=122:
                        kk+=1
                    else:
                        break
                tmp_key=formula[k:kk]
                #print(kk)
                k=kk
                count=1
                if k<j:
                    tmp_k=k
                    while tmp_k<j:
                        ascii=ord(formula[tmp_k])
                        if ascii>=48 and ascii<=57:
                            tmp_k+=1
                        else:
                            break
                    
                    if k==tmp_k:
                        count=1
                    else:
                        count=int(formula[k:tmp_k])
                        k=tmp_k
                if tmp_key in self.dict:
                    self.dict[tmp_key]+=count*multiply
                else:
                    self.dict[tmp_key]=count*multiply
                continue
            if formula[k]=='(':
                kk=k+1
                start=kk
                count=0
                while kk<j:
                    if formula[kk]=='(':
                        count+=1
                    if formula[kk]==')':
                        if count==0:
                            work_to=kk
                            break
                        if count>0:
                            count-=1
                    kk+=1
                #print(work_to)
                k=kk+1
                control=1
                if k<j:
                    tmp_k=k
                    while tmp_k<j:
                        ascii=ord(formula[tmp_k])
                        if ascii>=48 and ascii<=57:
                            tmp_k+=1
                        else:
                            break
                    ascii=ord(formula[k])
                    
                    if k==tmp_k:
                        control=1
                    else:
                        control=int(formula[k:tmp_k])
                        k=tmp_k
                self.analyze(formula,start,work_to,multiply*control)
            

Solution: https://leetcode.com/problems/number-of-atoms/submissions/