当前位置:   article > 正文

华为机试:根据员工出勤信息,判断本次是否能获得出勤奖_华为od机试-公司用一个字符串来表示员工的出勤信息:

华为od机试-公司用一个字符串来表示员工的出勤信息:

题目描述

公司用一个字符串来标识员工的出勤信息
absent:    缺勤
late:      迟到
leaveearly:早退
present:   正常上班

现需根据员工出勤信息,判断本次是否能获得出勤奖,
能获得出勤奖的条件如下:
1.缺勤不超过1次
2.没有连续的迟到/早退
3.任意连续7次考勤 缺勤/迟到/早退 不超过3次。

输入描述

用户的考勤数据字符串记录条数  >=1
输入字符串长度 <10000 ;
不存在非法输入
如:
2
present
present absent present present leaveearly present absent

输出描述

根据考勤数据字符串
如果能得到考勤奖输出true否则输出false
对于输出示例的结果应为
true false

示例1

输入

2
present
present present

输出

true true

示例2

输入

2
present
present absent present present leaveearly present absent

输出

true false

思路分析

  • 感觉题目有点怪,一行是一个月的考勤吗?
  • 不管是否符合实际,就是根据得出勤奖的条件判断,并打印结果。

参考代码

注:题目网上找的,参考代码是练习用,仅供参考,并不保证用例通过率。

  1. package com.bobo.od;
  2. import java.util.ArrayList;
  3. import java.util.Scanner;
  4. /**
  5. * 华为机试:根据员工出勤信息,判断本次是否能获得出勤奖
  6. */
  7. public class Test0059 {
  8. public static void main(String[] args) {
  9. Scanner scanner = new Scanner(System.in);
  10. int n = scanner.nextInt();
  11. scanner.nextLine();
  12. String[] records = new String[n];
  13. for (int i = 0; i < n; i++) {
  14. records[i] = scanner.nextLine();
  15. }
  16. ArrayList<String> res = new ArrayList<>(n);
  17. for (String record : records) {
  18. res.add(String.valueOf(extracted(record.split(" "))));
  19. }
  20. System.out.println(String.join(" ", res));
  21. }
  22. private static boolean extracted(String[] s) {
  23. // 1.缺勤不超过1次
  24. for (int j = 0; j < s.length; j++) {
  25. if ("absent".equals(s[j])) {
  26. return false;
  27. }
  28. }
  29. // 2.没有连续的迟到/早退
  30. if (s.length >= 2) {
  31. for (int i = 1; i < s.length; i++) {
  32. String yesterday = s[i - 1];
  33. String today = s[i];
  34. if (("late".equals(yesterday) || "leaveearly".equals(yesterday))
  35. && ("late".equals(today) || "leaveearly".equals(today))) {
  36. return false;
  37. }
  38. }
  39. }
  40. // 3.任意连续7次考勤 缺勤/迟到/早退 不超过3次
  41. if (s.length >= 7) {
  42. for (int i = 0; i < s.length; i++) {
  43. int count = 0;
  44. if (i + 7 > s.length) {
  45. break;
  46. }
  47. for (int j = i; j < i + 7; j++) {
  48. String today = s[j];
  49. if ("absent".equals(today) || "late".equals(today) || "leaveearly".equals(today)) {
  50. count++;
  51. if (count >= 3) {
  52. return false;
  53. }
  54. }
  55. }
  56. }
  57. }
  58. return true;
  59. }
  60. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/431790
推荐阅读
相关标签
  

闽ICP备14008679号