UVA12289 【One-Two-Three】
這麽水的題真的是紫題?
首先,three是唯一長度為5的,若長度為5直接輸出
接著,再判斷是否有兩個字母與one相同,相同直接輸出
剩下的就是two了
#include<bits/stdc++.h> using namespace std; string s; int n; int main() { cin>>n; for(int i=1; i<=n; i++) { cin>>s; if(s.size()==5) { printf("3"); }else if(s.size()==3) { if(s[0]==‘o‘&&(s[2]==‘e‘||s[1]==‘n‘)||s[1]==‘n‘&&(s[2]==‘e‘)) printf("1"); else printf("2"); } printf("\n"); } return 0; }
UVA12289 【One-Two-Three】
相關推薦
UVA12289 【One-Two-Three】
ace 真的 -s urn 直接 nbsp amp ++ main 這麽水的題真的是紫題? 首先,three是唯一長度為5的,若長度為5直接輸出 接著,再判斷是否有兩個字母與one相同,相同直接輸出 剩下的就是two了 #include<bits/stdc++.h&
題解 UVA12289 【One-Two-Three】
看了一遍題解,竟然還沒人用我這隻蒟蒻的蒻辦法,那我就發一下嘍。~~弱得很,大佬莫踩~~沒什麼講的,就是一個人寫英文單詞,每個單詞最多錯一個,但單詞長度不會錯,因此one的程式碼如下: if(number[0]=='o'&&number[2]=='e'||number[0]=='o'&
CF601A 【The Two Routes】
stream () pri mem out clu div 範圍 scanf 看數據範圍,然後果斷鄰接矩陣$Floyd$啊對於公路和鐵路,各建一個圖,分別跑最短路,然後取最大值即可 #include<iostream> #include<cstdio&g
It's as simple as one,two ,three…
Feynman寫過一篇文章“It's as simple as one,two ,three……”在這篇文章裡他討論了“思考”這個問題。 大概是在11、12歲的時候,Feyman和小夥伴Bernie說,思考不過是自己和自己的對話。但Bernie反問道:“你知道汽車的連軸曲杆長什麼樣嗎?”“當然知
【字尾陣列/SAM+邊分樹合併】LGP5115 Check,Check,Check one two!
【題目】 原題地址 給定一個字串 S S S,求
【LeetCode刷題】SQL-Combine Two Tables
介紹 左關聯查詢 col 每一個 cit http sid combine sql查詢 Table: Person +-------------+---------+ | Column Name | Type | +-------------+---------+ |
【論文閱讀-DL】《One Model To Learn Them All》閱讀
目前 自己 網絡 統一 也有 模式 nbsp 集中 one 概念:One/Zero-shot learning 訓練集中沒有樣本的學習;和transfer learning/domain adoption有關 NN很成功,但是每個領域都有自己的model;本文嘗試搞一個
165. Merge Two Sorted Lists【LintCode by java】
-i get In param des AD end itl spl Description Merge two sorted (ascending) linked lists and return it as a new sorted list. The new
CF 1005C Summarize to the Power of Two 【hash/STL-map】
eric bre rom delete there set while == [] A sequence a1,a2,…,an is called good if, for each element ai, there exists an element aj (i≠j)
題解 CF550A 【Two Substrings】
為什麼我的做法跟別人如此不一樣啊qwq 思路:暴力判每一個"BA"出現的位置,二分查詢他前/後有沒有滿足條件的"AB",時間複雜度\(O(n\log_{2}n)\) # include <bits/stdc++.h> const int MaxN = 100010; std::vector
【CodeForces - 632B】【Alice, Bob, Two Teams】(字首和求最優差值)
題目: Alice and Bob are playing a game. The game involves splitting up game pieces into two teams. There are n pieces, and the i-th p
【CV論文閱讀】Two stream convolutional Networks for action recognition in Vedios
論文的三個貢獻 (1)提出了two-stream結構的CNN,由空間和時間兩個維度的網路組成。 (2)使用多幀的密集光流場作為訓練輸入,可以提取動作的資訊。 (3)利用了多工訓練的方法把兩個資料集聯合起來。 Two stream結構 視屏可以分成空間與時間兩個部
【LeetCode題解---2】Add Two Numbers.md
【LeetCode題解—2】Add Two Numbers 題目 You are given two non-empty linked lists representing two non-neg
【python3/c++】leetcode 1. Two Sum (easy)
1. Two Sum (easy) Given an array of integers, return indices of the two numbers such that they add up to a specific target. You m
【LeetCode easy專題】leetcode 1 Two Sum
題目描述如下: 此題目比較簡單的一點是給定的測試用例中,一定會有兩個數,使得這個數的和等於給定的target。 常用的思路是 利用兩個for迴圈遍歷陣列,程式碼如下: class Solution { public: vecto
【LeetCode Medium系列】leetcode 2 Add Two Numers(附 c++ list and iterator介紹)
目錄 1. 演算法介紹: 題目要求如下: 本題目的解答思路就是傳統的加法的計算過程,即對應位數相加,滿十進一即可;需要注意的是:題目中給的是單鏈表,其具體的定義格式在程式碼上面的註釋中。 下面先給出對應的程式碼,然後進行深入分析,順便補充一
【python】【leetcode】【演算法題目2—Add Two Numbers】
一、題目描述 題目原文: You are given two linked lists representing two non-negative numbers. The digits
【LeetCode】【445】【Add Two Numbers II】【連結串列】
題目:You are given two non-empty linked lists representing two non-negative integers. The most significant digit comes first and each
【多校訓練】hdu 6181 Two Paths 次短路徑 Dijkstra
You are given a undirected graph with n nodes (numbered from 1 to n) and m edges. Alice and Bob are now trying to play a game. Both of them will take dif
617. Merge Two Binary Trees 【遞迴呼叫】
Given two binary trees and imagine that when you put one of them to cover the other, some nodes of the two trees are overlapped while the others are