• 2016huasacm暑假集训训练四 递推_B


    题目链接:https://vjudge.net/contest/125308#problem/B

    题意:给定n个三角形,问最多可以把区域化成多少个部分,这是一个一维空间  一定会满足一元二次方程  题目给定1 2的个数 只要得到3的个数就可以用待定系数法求得公式:F(x) = 3*(x-1)*x+2;  另外如果是二维的话,会满足一元三次方程 ,也可以用待定系数法求解;20

    AC代码:

     1 import java.io.BufferedReader;
     2 import java.io.IOException;
     3 import java.io.InputStream;
     4 import java.io.InputStreamReader;
     5 import java.io.PrintWriter;
     6 import java.util.StringTokenizer;
     7 
     8 public class Main {
     9     public static void main(String[] args) {
    10         InputReader s = new InputReader(System.in);
    11         PrintWriter cout = new PrintWriter(System.out);
    12         int t , x,t1;
    13         t  =   s.nextInt();
    14         while (t-- > 0) {
    15             x = s.nextInt();
    16              t1 = 3*(x-1)*x+2;
    17             cout.println(t1);
    18          
    19         }
    20         cout.flush();
    21     }
    22     static int gcd(int a, int b) {
    23         return b == 0 ? a : gcd(b, a % b);
    24     }
    25 }
    26 class InputReader {
    27 
    28     public BufferedReader rea;
    29     public StringTokenizer tok;
    30 
    31     public InputReader(InputStream stream) {
    32         rea = new BufferedReader(new InputStreamReader(stream), 32768);
    33         tok = null;
    34     }
    35 
    36     public String next() {
    37         while (tok == null || !tok.hasMoreTokens()) {
    38             try {
    39                 tok = new StringTokenizer(rea.readLine());
    40             } catch (IOException e) {
    41                 throw new RuntimeException(e);
    42             }
    43         }
    44         return tok.nextToken();
    45     }
    46 
    47     public int nextInt() {
    48         return Integer.parseInt(next());
    49     }
    50 
    51 }
  • 相关阅读:
    tcp为什么要三次握手
    TCP/IP协议(一)网络基础知识
    拜占庭将军问题深入探讨
    Block Manager
    Standalone 集群部署
    Spark内存管理
    Checkpoint & cache & persist
    Python——在Python中如何使用Linux的epoll
    网络编程——C10K简述
    网络编程——The C10K Problem(C10K = connection 10 kilo 问题)。k 表示 kilo,即 1000
  • 原文地址:https://www.cnblogs.com/LIUWEI123/p/5743511.html
Copyright © 2020-2023  润新知