题解列表
信息学奥赛一本通T1499-最短路计数 堆优化+dijkstra
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb……
sort练习---python
摘要:解题思路:注意事项:参考代码:n,m=map(int,input().split())l=list(map(int,input().split())) #要把列表中的数设为Int型,才能适应sort(……
蛇形矩阵(C语言题解)
摘要:解题思路:不使用数组注意事项:参考代码:#include<stdio.h>int main(){ int i,j,k,N,sum; scanf("%d",&N)……
数组输出(思路简单)
摘要:解题思路:注意事项:参考代码:# 读取三行输入,每行4个整数,组成3x4的二维列表li1 = list(map(int, input().split()))li2 = list(map(int, in……
2761: Hello, World!的大小
摘要:解题思路:stringLength(str)= 13注意事项:字符串最后有个\0,所以加起来是14参考代码:2761: Hello, World!的大小#include<stdio.……