551. Student Attendance Record I

2020-04-17 01:41:56 蜻蜓队长

Problem:

You are given a string representing an attendance record for a student. The record only contains the following three characters:

  1. 'A' : Absent.
  2. 'L' : Late.
  3. 'P' : Present.
    A student could be rewarded if his attendance record doesn't contain more than one 'A' (absent) or more than two continuous 'L' (late).

You need to return whether the student could be rewarded according to his attendance record.

Example 1:

Input: "PPALLP"
Output: True

Example 2:

Input: "PPALLL"
Output: False

思路

Solution (C++):

bool checkRecord(string s) {
    int count_A = 0;
    
    for (int i = 0; i < s.length(); ++i) {
        int count_L = 0;
        while (s[i] == 'L') { ++count_L; ++i; }
        if (s[i] == 'A')  ++count_A;
        if (count_A > 1 || count_L > 2)  return false;  
    }
    return true;
}

性能

Runtime: 4 ms  Memory Usage: 6.4 MB

思路

Solution (C++):


性能

Runtime: ms  Memory Usage: MB

以上内容来自于网络,如有侵权联系即删除
相关文章

上一篇: 基于均值坐标(Mean-Value Coordinates)的图像融合算法的优化实现

下一篇: Faster R-CNN+Resnet实现训练自己的数据集(CPU)--毕设笔记(1)

客服紫薇:15852074331
在线咨询
客户经理