Lyabu


私信TA

用户名:dotcpp0667701

访问量:366

签 名:

等  级
排  名 54822
经  验 255
参赛次数 0
文章发表 2
年  龄 21
在职情况 学生
学  校 山西农业大学
专  业 数据科学与大数据技术

  自我简介:

TA的其他文章

参考代码:

import java.io.*;
import java.util.*;

public class Main {
    static BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    static PrintWriter out = new PrintWriter(new OutputStreamWriter(System.out));

    public static void main(String[] args) throws IOException {
        int n = Integer.parseInt(in.readLine()); // 读取输入的整数n,表示偏移量数组的长度
        int[] offset = new int[n]; // 创建一个长度为n的偏移量数组
        String s;
        String[] ss;
        while ((s = in.readLine()) != null) {
            ss = s.split("\\s"); // 将输入按空格分割成字符串数组
            if (ss[0].equals("add")) { // 如果第一个字符串是"add"
                offset[0]++; // 偏移量数组的第一个元素加1
            } else if (ss[0].equals("sync")) { // 如果第一个字符串是"sync"
                if (offset[Integer.parseInt(ss[1])] < offset[0]) { // 如果指定的偏移量小于第一个偏移量
                    offset[Integer.parseInt(ss[1])]++; // 将指定的偏移量加1
                }
            } else {
                int min = Integer.MAX_VALUE; 
                for (int i = 0; i < n; i++) { 
                    min = Math.min(min, offset[i]); 
                }
                out.println(min); // 输出最小值
            }
            out.flush(); 
        }
    }
}


 

0.0分

1 人评分

  评论区

  • «
  • »