1003 数学 , 先暴力再解方程。 在b进制下是个2 , 3 位数的 大概是10000进制以上 。这部分解方程 2-10000 直接暴力 typedef long long LL ;LL n ;int ok(int b){LL m = n ;int c ;while(m){c = m % b ;if(c == 3 || c == 4 || c == 5 ||
前言:在2017年3月24日,正式决定去纽约州立大学石溪分校(State University of New York, Stony Brook,简称石溪大学),CS Ph.D. 项目。本科直博,DIY申请,全额奖学金,第一年5.1万美元(免学费2.2万,2017 fall, 2018 spring 的TA 1.93万,2018 summer RA 1万,没有 Fellowship) Abs
NJFU forest university 南林 Focus: NJFU specializes in forestry, environmental science, and related fields.Strengths:优势 If you’re passionate about environmental conservation, forestry, or related disci
The best way to understand a language construct is to understand how you would code it up in terms of other language constraints in another language. 原文件已上传到GitHub,分数是80: 点这里 本节需要用到标准库,sml标准库在这里:htt
Coursera有这门课的全部资料,就不放链接了:) 第一个课设一共13道题,都是sml编程题目 challenge没有时间就跳过了 原文件已上传到GitHub: 点这里 分数是90分 Write a function is_older that takes two dates and evaluates to true or false. It evaluates to true if th
This way 题意: 给你一个不完整的数,知道它有n位,是m的倍数,总共q个询问,每次问你它第k大是多少。 题解: dp[i][j]表示到第i位的时候,模m为j时的个数。 我们用res表示当前枚举到的数模m是多少,然后枚举前面模m的余数, 那么状态转移方程就是 d p [ i ] [ ( r e s + k ) % m ] + = d p [ i − 1 ] [ k ] ; dp[i
This way 题意: 给你a,b两个数组,让他们两辆匹配,ai与bj是稳定的,当且仅当不存在ak与bl使得ai^bl>ai^bj&&ak^bj>ak^bl。问你所有稳定匹配中ai^bj之和最大的是多少 题解: 好像和6625是同一道题目(羞愧) 只需要将01,10的路劲选择放在前面即可,其它地方不变 This way #include<bits/stdc++.h>using nam